728x90
★ 문제
- 두 정수 A와 B를 입력받은 다음, A+B를 출력하는 프로그램을 작성하시오.
★ 소스코드
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
int num = scan.nextInt();
for(int i=1; i<=num; i++) {
int num1 = scan.nextInt();
int num2 = scan.nextInt();
System.out.println("Case #" + i + ": " +(num1+num2));
}
scan.close();
}
}
728x90
'백준 알고리즘' 카테고리의 다른 글
3. 반복문 - 9 (2438번) (0) | 2023.03.01 |
---|---|
3. 반복문 - 8 (11022번) (0) | 2023.03.01 |
3. 반복문 - 6 (15552번) (0) | 2023.03.01 |
3. 반복문 - 5 (25314번) (0) | 2023.02.28 |
3. 반복문 - 4 (25304번) (0) | 2023.02.28 |