반응형
<코드>
import java.util.Scanner;
public class Main {
public static void main(String[] args){
Scanner sc = new Scanner(System.in);
int A = sc.nextInt();
int B = sc.nextInt();
while(A != 0 && B!= 0) {
System.out.println(A+B);
A = sc.nextInt();
B = sc.nextInt();
}
}
}
반응형
'🧩PS > 🥉Easy' 카테고리의 다른 글
[JAVA] 백준 1110번 - 더하기 사이클 (0) | 2021.09.17 |
---|---|
[JAVA] 백준 10951번 - A+B - 4 (0) | 2021.09.17 |
[JAVA] 백준 10871번 - X보다 작은 수 (0) | 2021.09.17 |
[JAVA] 백준 2439번 - 별 찍기 - 2 (0) | 2021.09.17 |
[JAVA] 백준 2438번 - 별 찍기 - 1 (0) | 2021.09.17 |