從2000年一月一日算,給一個天數,算出它是多少年月日 星期幾

/#include <iostream>  #include <string>  using namespace std;  bool isLeapYear(int year)                            //判斷是否爲閏年  { return (year % 4 == 0 && year % 100 != 0) || (year % 400 == 0);  }  int
相關文章
相關標籤/搜索