import java.io.IOException;
import java.util.Scanner;
public class Main {
public static void main(String args[]) throws IOException {
Scanner in = new Scanner(System.in);
int input = in.nextInt();
int input2, input3,result;
for (int i = 0; i < input; i++) {
input2=in.nextInt();
input3=in.nextInt();
result = input2+input3;
System.out.println("Case #"+(i+1)+": "+ result);
}
}
}
더 많은 백준 코드가 보고 싶다면 ? https://chuinggun.tistory.com/category/%EB%B0%B1%EC%A4%80
'알고리즘풀이 > 백준-자바' 카테고리의 다른 글
[백준/JAVA] 2438번 별찍기 (0) | 2020.07.21 |
---|---|
[백준/JAVA] 11022번 두 정수 A와 B를 입력받은 다음, A+B를 출력하는 프로그램을 작성하시오. (0) | 2020.07.20 |
[백준/JAVA] 2742번 기찍N (0) | 2020.07.20 |
[백준/JAVA] 2741번 N찍기 (0) | 2020.07.20 |
[백준/JAVA] 15552번 빠른 A+B (0) | 2020.07.20 |
댓글