https://www.acmicpc.net/problem/10951
BufferedReader와 Scanner를 쓸 때 약간 다를 것이다.
여기서는 while문 반복 체크할때 할당도 동시에 해주는 점이 주의할 점이다.
public class Boj10951 {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st;
String str ="";
while((str = br.readLine()) != null) {
st = new StringTokenizer(str);
int a = Integer.parseInt(st.nextToken());
int b = Integer.parseInt(st.nextToken());
System.out.println(a+b);
}
}
}
'알고리즘 > 백준' 카테고리의 다른 글
백준 16673 고려대학교에는 공식 와인이 있다 (0) | 2022.12.06 |
---|---|
백준 10818 최소, 최대 (0) | 2022.03.03 |
백준 1924 2007년 (0) | 2022.03.02 |
백준 2745 진법변환 (Java) (0) | 2022.03.01 |
백준 6359 만취한 상범 (0) | 2022.02.28 |