C语言代码:根据年份和月份计算天数
下面是 C 程序示例:
#include <stdio.h>
int main() {
int year, month, days;
printf('请输入年份和月份(用空格隔开):');
scanf('%d %d', &year, &month);
switch (month) {
case 1:
case 3:
case 5:
case 7:
case 8:
case 10:
case 12:
days = 31;
break;
case 4:
case 6:
case 9:
case 11:
days = 30;
break;
case 2:
if ((year % 4 == 0 && year % 100 != 0) || year % 400 == 0) {
days = 29;
} else {
days = 28;
}
break;
default:
printf('输入有误!');
return 0;
}
printf('%d年%d月有%d天。\n', year, month, days);
return 0;
}
程序运行结果:
请输入年份和月份(用空格隔开):2021 2
2021年2月有28天。
原文地址: http://www.cveoy.top/t/topic/lX62 著作权归作者所有。请勿转载和采集!