728x90
▶풀이 방법
import java.util.*;
public class Main{
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int num = sc.nextInt();
for(int i = 1; i <= num; i++) {
int a = sc.nextInt();
int b = sc.nextInt();
System.out.println("Case #" + i + ": " + (a+b));
}
}
}
** 주의 사항 **
- print시 문자열로 합쳐지는지 정수형 숫자가 합쳐지는지 반드시 확인할 것!!
728x90
'Algorithm > BaekJoon[Java]' 카테고리의 다른 글
백준 11718, 11719 (0) | 2022.03.16 |
---|---|
백준 11022 (0) | 2022.03.16 |
백준 10953(문자열 콤마(') 구분) (0) | 2022.03.16 |
백준 10952 (0) | 2022.03.16 |
백준 10951 (0) | 2022.03.16 |