[백준 알고리즘] 10950번 A+B-3 (Python3, Java)언어, 알고리즘 공부/백준2020. 2. 11. 17:20
Table of Contents
<Python3>
n = int(input())
for i in range(n):
a,b = input().split()
print(int(a)+int(b))
<Java>
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.StringTokenizer;
public class b_10950 {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int T = Integer.parseInt(br.readLine());
for(int i=0; i<T; i++){
StringTokenizer st = new StringTokenizer(br.readLine(), " ");
System.out.println(Integer.parseInt(st.nextToken())+Integer.parseInt(st.nextToken()));
}
}
}
▼링크
https://www.acmicpc.net/problem/10950
반응형
'언어, 알고리즘 공부 > 백준' 카테고리의 다른 글
[백준 알고리즘] 11021번 A+B - 7(Python3, Java) (0) | 2020.02.11 |
---|---|
[백준 알고리즘] 1552번 빠른 A+B(Python3, Java) (0) | 2020.02.11 |
[백준 알고리즘] 2884번 알람 시계(Python3, Java) (0) | 2020.02.11 |
[백준 알고리즘] 1330번 두 수 비교하기(Python3) (0) | 2020.02.11 |
[백준 알고리즘] 2750번 수 정렬하기(Python3) (0) | 2020.02.11 |
@쿠몬e :: ˚˛˚ * December☃ 。* 。˛˚
전공 공부 기록 📘
포스팅이 좋았다면 "좋아요❤️" 또는 "구독👍🏻" 해주세요!