質問編集履歴

2

再度ご指摘があった部分の修正。

2021/01/03 02:50

投稿

taishookun
taishookun

スコア3

test CHANGED
File without changes
test CHANGED
@@ -8,75 +8,11 @@
8
8
 
9
9
  メソッド main に対する不正な修飾子です。only public, protected, private, abstract, static, final, synchronized, native & strictfp are permitted
10
10
 
11
- ```
12
-
13
- エラーメッセージ
14
-
15
- ```
16
11
 
17
12
 
13
+ 該当のソースコード
18
14
 
19
- ###```class OracleTest {
20
15
 
21
- public static void main(String[] args) {
22
-
23
- int rand =(int)( Math.random()*5);
24
-
25
- switch(rand) {
26
-
27
- case 0: System.out.println("daikichi");break;
28
-
29
- case 1: System.out.println("cyuukichi");break;
30
-
31
- case 2: System.out.println("syoukichi");break;
32
-
33
- case 3: System.out.println("kyou");break;
34
-
35
- case 4: System.out.println("daikyou");break;
36
-
37
- default:System.out.println("error");break;
38
-
39
- }
40
-
41
- }
42
-
43
- }
44
-
45
- コード
46
-
47
- ``` 該当のソースコード
48
-
49
- class OracleTest {
50
-
51
- public static void main(String[] args) {
52
-
53
- int rand =(int)( Math.random()*5);
54
-
55
- switch(rand) {
56
-
57
- case 0: System.out.println("daikichi");break;
58
-
59
- case 1: System.out.println("cyuukichi");break;
60
-
61
- case 2: System.out.println("syoukichi");break;
62
-
63
- case 3: System.out.println("kyou");break;
64
-
65
- case 4: System.out.println("daikyou");break;
66
-
67
- default:System.out.println("error");break;
68
-
69
- }
70
-
71
- }
72
-
73
- }
74
-
75
- ```ここに言語名を入力
76
-
77
- java
78
-
79
- ソースコード
80
16
 
81
17
  class OracleTest {
82
18
 
@@ -106,6 +42,8 @@
106
42
 
107
43
 
108
44
 
45
+
46
+
109
47
  ### 試したこと
110
48
 
111
49
  ネットで検索したが初心者でよく分からなかった。

1

codeボタンを押し""の中にコード貼り付け

2021/01/03 02:50

投稿

taishookun
taishookun

スコア3

test CHANGED
File without changes
test CHANGED
@@ -16,7 +16,35 @@
16
16
 
17
17
 
18
18
 
19
+ ###```class OracleTest {
20
+
21
+ public static void main(String[] args) {
22
+
23
+ int rand =(int)( Math.random()*5);
24
+
25
+ switch(rand) {
26
+
27
+ case 0: System.out.println("daikichi");break;
28
+
29
+ case 1: System.out.println("cyuukichi");break;
30
+
31
+ case 2: System.out.println("syoukichi");break;
32
+
33
+ case 3: System.out.println("kyou");break;
34
+
35
+ case 4: System.out.println("daikyou");break;
36
+
37
+ default:System.out.println("error");break;
38
+
39
+ }
40
+
41
+ }
42
+
43
+ }
44
+
45
+ コード
46
+
19
- ### 該当のソースコード
47
+ ``` 該当のソースコード
20
48
 
21
49
  class OracleTest {
22
50