程序设计题9:闰年判断

#include <stdio.h>
 
int main() {
    int year;
    printf("请输入一个年份:");
    scanf("%d", &year);
 
    // 判断是否为闰年
    if ((year % 4 == 0 && year % 100 != 0) || (year % 400 == 0)) {
        printf("%d 是闰年。\n", year);
    } else {
        printf("%d 不是闰年。\n", year);
    }
 
    return 0;
}
无标签
评论区
头像