백준(JAVA) 풀이/수학

백준(JAVA) 11022번 A+B - 8 풀이

개발윗미 2022. 3. 28. 17:29

Java로 구현한 11022번 A+B - 8 문제 풀이입니다.

 

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

 

11022번: A+B - 8

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

www.acmicpc.net


import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		
		int t = sc.nextInt();
		for (int i=1; i<=t; i++) {
			int a = sc.nextInt();
			int b = sc.nextInt();
			
			System.out.printf("Case #%d: %d + %d = %d\n", i, a, b, a + b);
		}
	}
}

 

1. 두 정수 a와 b를 입력받은 후 문제에서 요구하는 출력 형식에 맞추어 두 수의 합을 출력한다.