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 Case = scan.nextInt();
String result = "";
for(int i=0; i<Case; i++) {
int num1 = scan.nextInt();
int num2 = scan.nextInt();
result += String.format("%d\n", num1+num2);
}
System.out.println(result);
}
}
728x90
'백준 알고리즘' 카테고리의 다른 글
3. 반복문 - 4 (25304번) (0) | 2023.02.28 |
---|---|
3. 반복문 - 3 (8393번) (0) | 2023.02.28 |
3. 반복문 - 1 (2739번) (0) | 2023.02.28 |
2. 조건문 - 7 (2480번) (0) | 2023.02.28 |
2. 조건문 - 6 (2525번) (0) | 2023.02.28 |