摘要: #include "date.h" #include "utils.h" #include using std::cout; using std::endl; Date::Date(){ year=1970; month=1; day=1; } Date::Date(int y, int m, int d){ year=y; month=m; day=d;} void Date::di... 阅读全文