반응형
<코드>
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+" = "+(A+B));
}
}
}
https://www.acmicpc.net/problem/11022
반응형
'🧩PS > 🥉Easy' 카테고리의 다른 글
[JAVA] 백준 2439번 - 별 찍기 - 2 (0) | 2021.09.17 |
---|---|
[JAVA] 백준 2438번 - 별 찍기 - 1 (0) | 2021.09.17 |
[JAVA] 백준 11021번 - A+B - 7 (0) | 2021.09.17 |
[JAVA] 백준 2742번 - 기찍 N (0) | 2021.09.14 |
[JAVA] 백준 2741번 - N 찍기 (0) | 2021.09.14 |