반응형
<코드>
import java.util.Scanner;
public class Main {
public static void main(String[] args){
Scanner sc = new Scanner(System.in);
int T = sc.nextInt();
for (int i = 1; i <= T; i++) {
int A = sc.nextInt();
int B = sc.nextInt();
System.out.println("Case #"+i+": "+(A+B));
}
}
}
반응형
'🧩PS > 🥉Easy' 카테고리의 다른 글
[JAVA] 백준 2438번 - 별 찍기 - 1 (0) | 2021.09.17 |
---|---|
[JAVA] 백준 11022번 - A+B - 8 (0) | 2021.09.17 |
[JAVA] 백준 2742번 - 기찍 N (0) | 2021.09.14 |
[JAVA] 백준 2741번 - N 찍기 (0) | 2021.09.14 |
[JAVA] 백준 8393번 - 합 (0) | 2021.09.14 |