A+B -3

김나영·2023년 6월 14일
0

알고리즘

목록 보기
11/16

문제 A+B -3

풀이

Scanner sc = new Scanner(System.in);
  • 값을 입력 받기 위해 Scanner 사용
int T = sc.nextInt();
  • 테스트 케이스의 개수 T(정수)가 주어지므로 sc.nextInt()로 값을 받아옴
int A,B;
  • 두 정수 A,B 선언
for (int i = 0; i < T; i++) {
      B = sc.nextInt();
      A = sc.nextInt();
      System.out.println(A+B);
}
  • for문을 사용하여 반복해서 출력

  • 테스트 케이스의 개수만큼 반복해서 출력해야하므로 이때 A와 B의 값을 sc.nextInt()로 받아옴

전체코드

import java.util.Scanner;
public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int T = sc.nextInt();
        int B, A;
        for (int i = 0; i < T; i++) {
            B = sc.nextInt();
            A = sc.nextInt();
            System.out.println(A+B);
        }
    }
}

0개의 댓글