【题目】输入一个年份和月份,打印出该月份有多少天(考虑闰年),用switch语句编程。 相关知识点: 试题来源: 解析 【解析】【参考答案】include stdio.hvoid main ( )int year, monthprintf ("Input year,month: ")scanf ("d, d", &year, &month)switch (month)case 1:case 3:case 5:case 7:case 8:...
printf("29 days\n"); /*闰年的2月有 29天*/ } else { printf("28 days\n");/*平年的2月...
printf("该月份有%d天\n", day);
输入一个年份和月份,打印出该月份有多少天(考虑闰年),用switch语句编程。 相关知识点: 试题来源: 解析 【参考答案】#include stdio.hvoid main ( ){int year, month;printf ("Input year,month: ");scanf ("d,d", &year, &month)switch (month){case 1:case 3:case 5:case 7:case 8:case 10:...
switch (month){ case 1:case 3:case 5:case 7:case 8:case 10:case 12:printf("31 days\n");break; .case 2:if(vyear % 4== 0 && year % 100 != O)l(year % 400 == 0))printf("29 days\n"); /*闰年的2月有 29天*/ } else { printf("28 days\n");/*平年的2月...
switch (month){ case 1:case 3:case 5:case 7:case 8:case 10:case 12:printf("31 days\n");break; .case 2:if(vyear % 4== 0 && year % 100 != O)l(year % 400 == 0))printf("29 days\n"); /*闰年的2月有 29天*/ } else { printf("28 days\n");/*平年的2月...