Post

[Programmers] 181947번 - 덧셈식 출력하기 [Java][C++]

[Programmers] 181947번 - 덧셈식 출력하기 [Java][C++]

문제 링크


1. 아이디어

입력받은 두 수와 그 합을 a + b = c 형식 그대로 출력해주면 된다.


2. 복잡도

시간복잡도공간복잡도
$O(1)$$O(1)$

3. 코드

풀이 [Java][C++]

1
2
3
4
5
6
7
8
9
10
11
12
13
14
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
12
#include <iostream>

using namespace std;

int main(void) {
    ios::sync_with_stdio(0);
    cin.tie(0);

    int a, b;
    cin >> a >> b;
    cout << a << " + " << b << " = " << a + b << '\n';
}

This post is licensed under CC BY 4.0 by the author.