We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 02c1d2e commit aa126afCopy full SHA for aa126af
1 file changed
src/codeup100/c1038.java
@@ -20,6 +20,8 @@ public class c1038 {
20
import java.util.Scanner;
21
22
public class c1038 {
23
+ public static void main(String[] args){
24
+
25
Scanner sc = new Scanner(System.in); // Scanner 객체 생성
26
27
// 범위 : -1073741824 ~ 1073741824
@@ -42,8 +44,8 @@ public class c1038 {
42
44
long sum = num1 + num2;
43
45
System.out.println(sum);
46
}
- }
47
+ }
48
49
50
51
0 commit comments