#include <stdio.h> //从键盘输入一个年份和月份,输出该月的天数 main() { int year,month; scanf("【1】",&year,&month); switch(month) { case 1: case 3: case 5: case 7: case 8: case 10: case 12:printf("本月【2】天!");break; case 2:{ if(【3】) printf("本月29天!"); else printf("本月【4】天!"); defaults:printf("本月【5】天!"); break; } } getchar(); }
#include <stdio.h> //从键盘输入一个年份和月份,输出该月的天数 main() { int year,month; scanf("%d%d",&year,&month); switch(month) { case 1: case 3: case 5: case 7: case 8: case 10: case 12:printf("本月31天!");break; case 2:{ if((year%4==0 && year%100!=0)||(year%400==0)) printf("本月29天!"); else printf("本月28天!"); defaults:printf("本月30天!"); break; } } getchar(); }
标签:case,天数,year,本月,month,break,printf,填空,C语言 From: https://www.cnblogs.com/xkdn/p/17105371.html