윤년 4의 배수, 100의 배수가 아닐 때 또는 400의 배수일 때

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class Main {
    public static Main Main(){
        return Main();
    }

    // 윤년 4의 배수, 100의 배수가 아닐 때 또는 400의 배수일 때

    public static int cal(int years){
        int result = -1;

        if(years % 4 == 0 && years % 100 != 0 || years % 400 == 0 ){
            result = 1;
        }
        else
        {
            result = 0;
        }
        return result;
    }

    public static void main(String[] args) throws IOException {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        int input = Integer.parseInt(br.readLine());
        int years = cal(input);
        System.out.println(years);
    }
}

'AREA(지속적인 일상) > 02_백준' 카테고리의 다른 글

[백준] - 2884 - 알람 시계  (0) 2021.08.24
[백준] - 사분면 고르기 - 14681  (0) 2021.08.24
[백준] - 1330 대소 비교  (0) 2021.08.24
[백준] 1009번 - 분산처리  (0) 2021.08.24
[백준] 2588 곱셈  (0) 2021.08.23