質問編集履歴

4

誤字

2021/02/26 01:23

投稿

退会済みユーザー
test CHANGED
@@ -1 +1 @@
1
- Stirng型からint型への変換で躓きました
1
+ Stirng型からint型への変換で躓きました
test CHANGED
File without changes

3

誤字

2021/02/26 01:23

投稿

退会済みユーザー
test CHANGED
File without changes
test CHANGED
@@ -58,7 +58,7 @@
58
58
 
59
59
  } else {
60
60
 
61
- foodnum = (Integer) null;  //food = null;にしたかったけどint型をnullにできないためこのように記載
61
+ food = (Integer) null;  //food = null;にしたかったけどint型をnullにできないためこのように記載
62
62
 
63
63
  }
64
64
 

2

誤字

2021/02/26 01:21

投稿

退会済みユーザー
test CHANGED
@@ -1 +1 @@
1
- Stirng型からint型への変換で躓きました
1
+ Stirng型からint型への変換で躓きました
test CHANGED
@@ -75,3 +75,9 @@
75
75
 
76
76
 
77
77
  Eclipse IDE 4.14.0
78
+
79
+
80
+
81
+
82
+
83
+ 追記) int food をint foodnum に修正しました

1

変数を修正

2021/02/26 01:20

投稿

退会済みユーザー
test CHANGED
File without changes
test CHANGED
@@ -44,21 +44,21 @@
44
44
 
45
45
  String food = request.getParameter("Food");
46
46
 
47
- int food = Integer.parseInt(food);
47
+ int foodnum = Integer.parseInt(food);
48
48
 
49
49
 
50
50
 
51
- if (food == "りんご") {
51
+ if (foodnum == "りんご") {
52
52
 
53
53
  food = 0;
54
54
 
55
- } else if(food == "いちご") {
55
+ } else if(foodnum == "いちご") {
56
56
 
57
57
  food = 1;
58
58
 
59
59
  } else {
60
60
 
61
- food = (Integer) null;  //food = null;にしたかったけどint型をnullにできないためこのように記載
61
+ foodnum = (Integer) null;  //food = null;にしたかったけどint型をnullにできないためこのように記載
62
62
 
63
63
  }
64
64