https://www.acmicpc.net/problem/10950
두 정수 A와 B를 입력받은 다음, A+B를 출력하는 프로그램을 작성하시오.
이런 문제들은 for문보다 scanner랑 출력하는게 더어렵다.;;;
해답
package solution;
import java.util.Scanner;
public class Bakjun_10950 {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int A = sc.nextInt();
for(int i=0;i<A;i++) {
int B = sc.nextInt();
int C = sc.nextInt();
System.out.println(B+C);
}
sc.close();
}
}
'IT_tech > 알고리즘' 카테고리의 다른 글
백준 11022) A+B - 8 (0) | 2019.11.05 |
---|---|
백준 11021) A+B - 7 자바 (0) | 2019.11.04 |
백준 2884) 알람시계 - 자바 (0) | 2019.10.28 |
백준 2753번) 윤년 (0) | 2019.10.23 |
백준)1388 IF문 (0) | 2019.10.16 |