백준 10953번: A+B-6

최창효·2022년 2월 8일
0
post-thumbnail

문제 설명

  • 기본 입력에 대한 문제입니다.

접근법

  • 간단하게 Scanner를 사용했습니다.
  • next와 nextLine을 혼용해서 쓰면 복잡한 일이 발생할 수 있기 때문에(자세한 설명) N을 nextLine으로 받은 뒤 Integer로 변환하는 작업을 진행했습니다.
  • Stringtokenizer도 있지만 String.split(sep)으로 구분할 수도 있습니다.

정답

import java.util.Scanner;

public class Main{

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int N = Integer.parseInt(sc.nextLine());
		for (int i = 0; i < N; i++) {
			String[] s = sc.nextLine().split(",");
			System.out.println(Integer.parseInt(s[0])+Integer.parseInt(s[1]));
		}
	}
}
profile
기록하고 정리하는 걸 좋아하는 개발자.

0개의 댓글