Notice
Recent Posts
Recent Comments
Link
- Today
- Total
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- errorhandling
- blog
- suspend
- 진짜학습지후기
- 인공지능
- GIT
- 일본어문법
- 진짜일본어
- rxjava
- PR
- 학습지
- posting
- 일본어기초
- coroutine
- n3문법
- webflux
- KotlinInAction
- CustomTab
- 책추천
- jlpt
- androidstudio
- github
- 진짜학습지
- pullrequest
- Kotlin
- 안드로이드
- 코틀린
- Android
- ai
- 책리뷰
Archives
코딩하는 개굴이
BaekJoon/BOJ [JAVA] 빠른 A+B_15552 본문
반응형
BaekJoon/BOJ [JAVA] 빠른 A+B_15552
HINT: BufferedReader를 사용하기에, IOException 처리가 필요하다..!! 또한, Scanner의 경우, nextInt가 존재하여, 공백에 따른 입력의 구별이 쉽지만, BufferedReader의 경우엔 다소 복잡하므로, StringTokenizer를 통해 nextToken으로 입력을 받았다. flush를 해 주지 않으면 출력이 정상적으로 진행되지 않음을 유의하자!
import java.io.*;
import java.util.ArrayList;
import java.util.StringTokenizer;
import java.util.Vector;
public class baekjoon_15552 {
public static void main(String[] argc) throws IOException{
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(System.out));
int iter = Integer.parseInt(br.readLine());
for(int i=0;i<iter;i++){
StringTokenizer st = new StringTokenizer(br.readLine());
int a = Integer.parseInt(st.nextToken());
int b = Integer.parseInt(st.nextToken());
bw.write((a+b)+"\n");
}
bw.flush();
bw.close();
}
}
반응형
'알고리즘 > Baekjoon' 카테고리의 다른 글
BaekJoon/BOJ [JAVA] 숫자카드_10815 (0) | 2018.11.16 |
---|---|
BaekJoon/BOJ [JAVA] 숫자카드2_10816 (0) | 2018.11.16 |
BaekJoon/BOJ [JAVA] 열 개씩 끊어 출력하기_11721 (0) | 2018.11.16 |
BaekJoon/BOJ [JAVA] 숫자의 합_11720 (0) | 2018.11.16 |
BaekJoon/BOJ [JAVA] 합_8393 (0) | 2018.11.16 |
Comments