문제
소스 코드
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.Scanner;
import java.util.StringTokenizer;
public class Main {
public static StringTokenizer st;
public static void main(String[] args) throws Exception {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
st = new StringTokenizer(br.readLine());
int t = Integer.parseInt(st.nextToken());
for (int i = 0; i < t; i++) {
st = new StringTokenizer(br.readLine(), " ");
int a = Integer.parseInt(st.nextToken());
int b = Integer.parseInt(st.nextToken());
int j = i + 1;
int sum = a + b;
System.out.println("Case #" + j + ": " + sum);
}
}
}
'알고리즘 풀이 > 백준(BOJ)' 카테고리의 다른 글
[JAVA/백준10818] 최소, 최대 (0) | 2019.05.31 |
---|---|
[JAVA/백준1924] 2007년 (0) | 2019.05.31 |
[JAVA/백준10951] A + B - 4 (0) | 2019.05.31 |
[JAVA/2667] 단지번호붙이기 (0) | 2019.05.30 |
[JAVA/백준11654] 아스키 코드 (0) | 2019.05.26 |