반응형
import java.util.*;
public class Main{
public static void main(String[] args){
Scanner sc = new Scanner(System.in);
int a, b;
a = sc.nextInt();
b = sc.nextInt();
System.out.println(a + b);
}
}
(0 < A, B < 10) 이라는 조건을 블로그에 올리기 전까지 모르고 있었는데 정답 처리가 되었다.
(0 < A, B < 10) 조건을 다시 추가해서 풀어보자면,
import java.util.*;
public class Main{
public static void main(String[] args){
Scanner sc = new Scanner(System.in);
int a, b;
a = sc.nextInt();
b = sc.nextInt();
while(a < 0 || b > 10){
System.out.println("a값은 0 초과, b 값은 10 미만이어야 합니다!");
a = sc.nextInt();
b = sc.nextInt();
}
System.out.println(a + b);
sc.close();
}
}
가 된다.
반응형
'알고리즘 > 백준' 카테고리의 다른 글
[백준] 10869 - 사칙연산 (0) | 2024.01.16 |
---|---|
[백준] 1008 - A/B (0) | 2024.01.14 |
[백준] 10098 - A X B (0) | 2024.01.11 |
[백준] 1001 - A - B (0) | 2024.01.11 |
[백준] 2557 - Hello World (JAVA/ 자바) (0) | 2024.01.11 |