判断闰年

c语言代码实现如下:

#include <stdio.h>
int main() {
    int year;
    scanf("%d", &year);
    if((year % 100 !=0 && year % 4 == 0) || year % 400 ==0){
       printf("YES");
    }else{
        printf("NO");
    }
    return 0;
}

原文地址:https://www.cnblogs.com/p201821440039/p/10478098.html