从2000年一月一日算,给一个天数,算出它是多少年月日 星期几

/#include <iostream>  #include <string>  using namespace std;  bool isLeapYear(int year)                            //判断是否为闰年  { return (year % 4 == 0 && year % 100 != 0) || (year % 400 == 0);  }  int
相关文章
相关标签/搜索