코린이의 소소한 공부노트

[프로그래머스/Lv.0] 홀짝 구분하기 본문

코딩테스트 풀이/JAVA

[프로그래머스/Lv.0] 홀짝 구분하기

무지맘 2023. 4. 24. 21:07

1. Input, Output, Example

- n이 짝수이면 "n is even", 홀수이면 "n is odd"를 출력하는 코드를 작성

 

2. Constraint

1) 1 n 1,000

 

3. Code

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

import java.util.Scanner;
public class Solution {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        if(n%2==0)
            System.out.print(n+" is even");
        else
            System.out.print(n+" is odd");
    }
}