C語言實現計算一年中過了多少天

#include <stdio.h> #include <stdlib.h> int daysofmonth(int year, int month) { switch(month) { case 1: return 31; case 2: if(leapornot(year))return 29; return 28; case 3: return 31; case 4: return 30;
相關文章
相關標籤/搜索