[프로그래머스] 홀짝 구분하기

Seah Lee·2023년 6월 17일
0

프로그래머스

목록 보기
3/57
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.println(n +" is even");
        }
        else System.out.println(n+" is odd");
    }
}
profile
성장하는 개발자

0개의 댓글