【C語言】輸入一個年份和月份,輸出該月的天數

分析:spa

三種類型,code

A.2月比較特殊,平年的2月只有28天,而閏年的2月有 29 天;blog

B.四、六、九、11月;it

C.其餘一、三、五、七、八、十、12月。io

代碼:class

/*輸入一個年份和月份,輸出該月的天數*/ #include<stdio.h>
int main() { int year, month; printf("輸入年和月(用空格分隔):\n"); scanf_s("%d %d", &year, &month); switch (month) { case 2:if (year % 400 == 0 || (year % 4 == 0 && year % 100 != 0)) printf("29天!\n"); else printf("28天!\n"); break; case 4: case 6: case 9: case 11:printf("30天!\n"); break; default:printf("31天!\n"); break; } return 0; }
相關文章
相關標籤/搜索