728x90
반응형
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
int a = scan.nextInt();
for(int i=1; i<=a; i++) {
int b = scan.nextInt();
int c = scan.nextInt();
int sum = b+c;
System.out.println("Case #"+i+": "+b+" + "+c+" = "+sum);
//Case #1: 1 + 1 = 2
}
scan.close();
}
}
728x90
반응형
'IT개발자 > 백준_Algorithm' 카테고리의 다른 글
백준 25304번 영수증 JAVA(자바) 문제풀이 (0) | 2023.01.29 |
---|---|
백준 2480번 주사위 세개 JAVA(자바) 문제 풀이 (0) | 2023.01.23 |
백준 3003번 킹, 퀸, 룩, 비숍, 나이트, 폰 JAVA(자바) 문제 풀이 (0) | 2023.01.08 |
백준 11021번 A+B - 7 JAVA(자바) 문제 풀이 (0) | 2022.05.24 |
백준 2742번 기찍 N JAVA(자바) 문제 풀이 (0) | 2022.05.10 |