Post

[Programmers] 181951번 - a와 b 출력하기 [Java][C++]

[Programmers] 181951번 - a와 b 출력하기 [Java][C++]

문제 링크


1. 아이디어

입력받은 a, b를 각각 a = .., b = .. 형식으로 출력만 해주면 된다.


2. 복잡도

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

3. 코드

풀이 [Java][C++]

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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 = " + a);
        System.out.println("b = " + b);
    }
}
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <iostream>

using namespace std;

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

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

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