본문 바로가기
프로그래밍/백준 알고리즘 코드

백준 11021번 java A+B -7

by 졸린이 2020. 7. 29.
반응형

 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import java.util.Scanner;
 
//baekjoon_11021 A+B -7
 
public class Main{
    public static void main(String[] args){
        Scanner sc = new Scanner(System.in);
        int t = sc.nextInt();
        int a,b;
        
        for(int i=1; i<=t; i++) {
            a=sc.nextInt();
            b=sc.nextInt();
            System.out.println("Case #" + i +": " + (a+b));
        }
    }
}
cs

8행 : TestCase 입력. (테스트할 수)

9행 : a, b 변수 선언.

11행 : 1부터 t 까지 반복 for문.

12,13행 : a, b 입력.

14행 Case #x: (a+b) 출력.

반응형

댓글