题解 | #判断闰年#
判断闰年
https://www.nowcoder.com/practice/a7bcbe3cb86f435d9617dfdd20a16714
#include <stdio.h>
int main() {
int n;
scanf("%d",&n);
if((n%4==0 && n%100 != 0)||(n%400 == 0))
printf("yes");
else
printf("no");
return 0;
}

查看28道真题和解析