Helmi

프로그래머스 - (lv.0) a와 b 출력하기 본문

코딩 테스트/JAVA

프로그래머스 - (lv.0) a와 b 출력하기

Helmi 2023. 5. 16. 12: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();

        System.out.println("a = "+ a +"\n" +"b = " + b);
    }
}

이렇게 해도 통과가 되나, 제한 사항을 추가하고 싶다면

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 && a<=100000 && b>=-100000 && b<=100000) {
            System.out.println("a = " +a);
            System.out.println("b = " +b);
        }
    }
}

이렇게 추가 할 수도 있다!