코린이의 소소한 공부노트

[프로그래머스/Lv.0] a와 b 출력하기 본문

코딩테스트 풀이/JAVA

[프로그래머스/Lv.0] a와 b 출력하기

무지맘 2023. 4. 24. 15:29

1. Input, Output, Example

 

2. Constraint

1) -100,000 a, b 100,000

 

3. Code

1) 첫 코드(2023/04/24)

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 token = new StringTokenizer(br.readLine());
        int[] arr = {Integer.valueOf(token.nextToken()), Integer.valueOf(token.nextToken())};
        System.out.print("a = " + arr[0] + "\nb = " + arr[1]);
    }
}