최대 1 분 소요

[백준 2753번] 윤년

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package _1월_3주차;
 
import java.util.Scanner;
public class 백준_손수경_정답_2753 {
 
    public static void main(String[] args) {
        
        Scanner sc = new Scanner(System.in);
        int year = sc.nextInt();
        if ((year % 4 == 0 && year % 100 != 0|| (year % 400 == 0)) {
            System.out.println(1);
        }
        else {
            System.out.println(0);
        }
 
    }
 
}
cs

윤년 구하는 것은 넘 많이해서 외움,,,ㅋ

댓글남기기