본문 바로가기

백준 코딩테스트/if문 + for문

[백준] [자바] 11022번 : A+B - 8 (3단계 : for문)

728x90
728x90

https://www.acmicpc.net/problem/11022

 

11022번: A+B - 8

각 테스트 케이스마다 "Case #x: A + B = C" 형식으로 출력한다. x는 테스트 케이스 번호이고 1부터 시작하며, C는 A+B이다.

www.acmicpc.net



=문제푸는 팁=

11021번 문제에서 출력값만 수정하면 되는 문제여서, 추가적으로 어려움은 없는 문제이다.

 

=해설=

import java.util.Scanner;

public class Main {
	public static void main(String args[]) {
	Scanner scan = new Scanner(System.in);
      
	int c = scan.nextInt();
      
	for(int i=1;i<=c;i++) {
		int a = scan.nextInt();
		int b = scan.nextInt();
		System.out.println("Case #"+i+": "+a+" + "+b+" = "+(a+b));
		}
	scan.close();
	}
}

728x90