홀짝 구분하기 Lv. 0

박영준·2023년 5월 31일
0

코딩테스트

목록 보기
176/300
import java.util.Scanner;

public class Solution {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
    }
}


해결법

방법 1

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");
        }
    }
}

홀짝 구분하기 Lv. 0

profile
개발자로 거듭나기!

0개의 댓글