摘要:
#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... 阅读全文
posted @ 2019-04-30 15:07
一刀一个小盆友
阅读(145)
评论(1)
推荐(0)
2019年4月30日