공부/프로그래머스

a와 b 출력하기

딸기버블티 2023. 7. 6. 20:56

문제 설명

정수 a와 b가 주어집니다. 각 수를 입력받아 입출력 예와 같은 형식으로 출력하는 코드를 작성해 보세요.
제한사항
-100,000 ≤ a, b ≤ 100,000

 

나의 풀이

 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
import java.util.Scanner;
 
public class Solution {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int a = sc.nextInt();
        int b = sc.nextInt();
        if(a < -100000 || b > 100000 ){
            return;
        }
        System.out.println("a = " + a);
        System.out.println("b = " + b);
    }
}
 
cs