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