白駿A+B-7
質問する
ソリューション
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
int t = scanner.nextInt();
for (int i = 1; i <= t; i++) {
int a = scanner.nextInt();
int b = scanner.nextInt();
System.out.println("Case #" + i +": " + (a + b));
}
scanner.close();
}
}
Reference
この問題について(白駿A+B-7), 我々は、より多くの情報をここで見つけました https://velog.io/@ybnr_92/백준-AB-7テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol