[백준] 11021번(Java/자바)

Yeoonnii·2022년 9월 4일
0
post-custom-banner

백준 11021번 A+B - 7

💻제출 코드

import java.util.Scanner;

public class Main {
    public static void main(String[] args)  {
        Scanner sc = new Scanner(System.in);
        int x = sc.nextInt();

        for(int i=1; i<=x; i++){
                int A = sc.nextInt();
                int B = sc.nextInt();

                System.out.println("Case #"+i+": " +(A+B));
        }
        sc.close();
    }
}

0개의 댓글