https://www.acmicpc.net/problem/10950
확인해야 될 점
1. 몇개의 결과값을 출력할지 명시해준다.
2. A+B 식을 다 쓰고 난 후에 해당 식에 대한 결과값들이 출력되야한다.
public class Main {
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
int t = scan.nextInt();
int[] rs = new int[t];
for (int i = 0; i < t; i++) {
int x = scan.nextInt();
int y = scan.nextInt();
rs[i] = x+y;
}
scan.close();
for (int i = 0; i < t; i++) {
System.out.println(rs[i]);
}
}
}
int t = scan.nextInt();
계산할 식의 갯수를 정해준다
int[] rs = new int[t];
식을 다 쓰고 결과값을 출력해야 하니 배열을 계산할 식의 갯수 t값으로 초기화해준다.
for (int i = 0; i < t; i++) {
int x = scan.nextInt();
int y = scan.nextInt();
rs[i] = x+y;
}
t값 만큼 반복을 설정해주고
A(x)와 B(y)를 입력해주고, 배열에 결과값을 차례대로 저장해준다.
for (int i = 0; i < t; i++) {
System.out.println(rs[i]);
}
결과값들의 출력을 위해 t값만큼 반복을 설정해준다.
'백준' 카테고리의 다른 글
백준 25304 영수증 (0) | 2025.01.02 |
---|---|
백준 8393 합 (0) | 2025.01.01 |
백준 2739 구구단 (1) | 2024.12.30 |
백준 2480 주사위 세개 (0) | 2024.12.29 |
백준 2525 오븐시계 (1) | 2024.12.28 |