質問編集履歴
2
誤字の修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -22,23 +22,23 @@
|
|
22
22
|
|
23
23
|
if( 90 <= score && score <= 100 ){
|
24
24
|
|
25
|
-
System.out.println("点数" +
|
25
|
+
System.out.println("点数" + score + "は秀です");
|
26
26
|
|
27
27
|
}else if( 80 <= score && score <= 89 ){
|
28
28
|
|
29
|
-
System.out.println("点数" +
|
29
|
+
System.out.println("点数" + score + "は優です");
|
30
30
|
|
31
31
|
}else if( 70 <= score && score <= 79 ){
|
32
32
|
|
33
|
-
System.out.println("点数" +
|
33
|
+
System.out.println("点数" + score + "は良です");
|
34
34
|
|
35
35
|
}else if( 60 <= score && score <= 69 ){
|
36
36
|
|
37
|
-
System.out.println("点数" +
|
37
|
+
System.out.println("点数" + score + "は可です");
|
38
38
|
|
39
39
|
}else if( score <= 59 ){
|
40
40
|
|
41
|
-
System.out.println("点数" +
|
41
|
+
System.out.println("点数" + score + "は不合格です");
|
42
42
|
|
43
43
|
}else{
|
44
44
|
|
1
エラーメッセージを記入し、コードも読みやすくしたつもりです。
test
CHANGED
File without changes
|
test
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
```Java
|
2
|
+
|
1
3
|
import java.util.*;
|
2
4
|
|
3
5
|
|
@@ -46,6 +48,10 @@
|
|
46
48
|
|
47
49
|
}
|
48
50
|
|
51
|
+
```
|
49
52
|
|
53
|
+
10,13,15,17,19,21,23行目にエラーが出ます。
|
50
54
|
|
55
|
+
エラーの内容はすべて同じで
|
56
|
+
|
51
|
-
10,
|
57
|
+
「Main.java:10:error:class,interface,or enum expected」です。
|