티스토리 뷰
https://www.acmicpc.net/problem/10950
문제
두 정수 A와 B를 입력받은 다음, A+B를 출력하는 프로그램을 작성하시오.
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int a,b,c;
a = sc.nextInt();
for(int i=0; i<a ; i++)
{
b = sc.nextInt();
c = sc.nextInt();
System.out.println(b+c);
}
}
}
'IT > 백준알고리즘[JAVA]' 카테고리의 다른 글
15552:빠른 A+B (0) | 2021.06.14 |
---|---|
8393:합 (0) | 2021.06.10 |
2739:구구단 (0) | 2021.06.10 |
2884:알람 시계 (0) | 2021.06.07 |
14681:사분면 고르기 (0) | 2021.06.07 |
댓글