質問編集履歴
1
書き漏れ
title
CHANGED
File without changes
|
body
CHANGED
@@ -14,21 +14,20 @@
|
|
14
14
|
|
15
15
|
```Java
|
16
16
|
public class AAA {
|
17
|
-
|
18
17
|
public static void main(String[] args) {
|
19
18
|
|
20
19
|
System.out.print(out);
|
21
20
|
|
22
21
|
}
|
23
22
|
|
24
|
-
public static
|
23
|
+
public static int number() {
|
25
24
|
|
26
25
|
int a=1;
|
27
26
|
|
28
27
|
int b=2
|
29
28
|
}
|
30
29
|
|
31
|
-
public static String (int a,int b) {
|
30
|
+
public static String output(int a,int b) {
|
32
31
|
|
33
32
|
if(a.equals(b)){
|
34
33
|
|
@@ -42,6 +41,7 @@
|
|
42
41
|
|
43
42
|
return out;
|
44
43
|
|
44
|
+
|
45
45
|
```
|
46
46
|
|
47
47
|
### 試したこと
|