[백준 알고리즘] 11022번 A+B - 8(Python3, Java)언어, 알고리즘 공부/백준2020. 2. 11. 17:53
Table of Contents
<Python3>
import sys
n = int(sys.stdin.readline())
for i in range(1, n+1):
line = sys.stdin.readline()
a, b = line.split()
print("Case #%d: %d + %d = %d" %(i, int(a), int(b), int(a)+int(b)))
<Java>
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.StringTokenizer;
public class b_11022 {
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=1; i<=T; i++){
StringTokenizer st = new StringTokenizer(br.readLine(), " ");
int a = Integer.parseInt(st.nextToken());
int b = Integer.parseInt(st.nextToken());
System.out.println("Case #"+i+": "+a+" + "+b+" = "+(a+b));
}
}
}
▼링크
https://www.acmicpc.net/problem/11022
반응형
'언어, 알고리즘 공부 > 백준' 카테고리의 다른 글
[백준 알고리즘] 10951번 A+B - 4(Python3, Java) (0) | 2020.02.11 |
---|---|
[백준 알고리즘] 10952번 A+B - 5(Python3, Java) (0) | 2020.02.11 |
[백준 알고리즘] 11021번 A+B - 7(Python3, Java) (0) | 2020.02.11 |
[백준 알고리즘] 1552번 빠른 A+B(Python3, Java) (0) | 2020.02.11 |
[백준 알고리즘] 10950번 A+B-3 (Python3, Java) (0) | 2020.02.11 |
@쿠몬e :: ˚˛˚ * December☃ 。* 。˛˚
전공 공부 기록 📘
포스팅이 좋았다면 "좋아요❤️" 또는 "구독👍🏻" 해주세요!