判断闰年
时间:2020-01-24 18:48:00
收藏:0
阅读:93
#include "stdio.h" void main() { int y; printf("请输入年份\n"); scanf("%d",&y); if(y%4==0&&y%400==0) printf("是闰年"); else printf("不是闰年"); }
原文:https://www.cnblogs.com/zyz322/p/12232457.html
评论(0)