(5) 以下程序计算某年某月有几天,闰年与平年的 2 月天数不同。判别闰年的条件是:能被 4 整除但不能被 100 整除的年是闰年,或者能被 400 整除的年也是闰年。请分析程序填空。 #include “stdio.h” main() { int yy,mm,days; printf("input year and month:"); scanf("%d %d",&yy,&mm); switch(mm) { 将程序段填充完整(实现12个月每个月天数的输出) } printf("the days of %d %d is %d\n",yy,mm,days); }