https://www.acmicpc.net/problem/11021
난이도 : 브론즈 5
태그 : 수학, 구현, 사칙연산
설명
이번엔 앞에 Case와 index를 불여 출력하는 문제네요.
소스코드
import java.util.Scanner;
public class Main {
public static void main(String[] args)
{
Scanner sc = new Scanner(System.in);
int T = sc.nextInt();
int i;
int a , b;
for(i = 0; i < T; i++) {
a = sc.nextInt();
b = sc.nextInt();
System.out.println("Case #"+(i+1)+": "+(a+b));
}
}
}
'코딩테스트 > Kotlin' 카테고리의 다른 글
[백준 15792번] [Kotlin] A/B - 2 (0) | 2023.04.17 |
---|---|
[백준 15740번] [Kotlin] A + B - 9 (0) | 2023.04.17 |
[백준 10953번] [Kotlin] A + B - 6 (0) | 2023.04.17 |
[백준 20064번] [Kotlin] HI-ARC (0) | 2023.04.17 |
[백준 10093번] [Kotlin] 숫자 (0) | 2023.04.17 |