回答編集履歴

1

満点の出力変更

2020/02/19 08:23

投稿

退会済みユーザー
test CHANGED
@@ -22,13 +22,15 @@
22
22
 
23
23
  throw new IllegalArgumentException("範囲外(+)");
24
24
 
25
- } else if( score == 100 ){
26
-
27
- System.out.println("「満点だったので宿題免除です!!」");
28
-
29
25
  } else if( score >= 80 ){
30
26
 
31
27
  System.out.println("「優秀です!」");
28
+
29
+ if( score == 100 ){
30
+
31
+ System.out.println("「満点だったので宿題免除です!!」");
32
+
33
+ }
32
34
 
33
35
  } else if( score >= 60 ){
34
36
 
@@ -44,6 +46,8 @@
44
46
 
45
47
  }
46
48
 
49
+
50
+
47
51
  } catch (Exception e) {
48
52
 
49
53
  System.err.println("「不正な点数です!」");