[Programmers] #181947 - 덧셈식 출력하기 [Java][C++][Python]
정수 a와 b를 입력받아 a + b = c 형태의 덧셈식을 출력하는 워밍업 문제.
[Programmers] #181947 - 덧셈식 출력하기 [Java][C++][Python]
1. 아이디어
정수 a, b가 주어질 때 a + b = c 형태의 계산식을 출력하면 되는 문제다. 두 값을 입력받아 합을 계산한 뒤, 정해진 형식의 문자열에 그대로 끼워 넣어 출력해줬다.
2. 복잡도
| 접근 | 시간 | 공간 |
|---|---|---|
| 풀이 | $O(1)$ | $O(1)$ |
3. 코드
풀이 [Java][C++][Python]
1
2
3
4
5
6
7
8
9
10
11
12
13
import java.io.*;
import java.util.*;
public class Solution {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st = new StringTokenizer(br.readLine());
int a = Integer.parseInt(st.nextToken());
int b = Integer.parseInt(st.nextToken());
System.out.println(a + " + " + b + " = " + (a + b));
}
}
1
2
3
4
5
6
7
8
9
10
11
#include <bits/stdc++.h>
using namespace std;
int main() {
ios::sync_with_stdio(0);
cin.tie(0);
int a, b;
cin >> a >> b;
cout << a << " + " << b << " = " << a + b;
}
1
2
3
4
5
6
import sys
input = sys.stdin.readline
a, b = map(int, input().split())
print(f"{a} + {b} = {a + b}")
This post is licensed under CC BY 4.0 by the author.