摘要: 1 #include 2 #include 3 using namespace std; 4 5 class Date //日期类 6 { 7 private: 8 int year; 9 int month; 10 int day; 11 public: 12 Date(){... 阅读全文
posted @ 2015-06-17 21:33 Daniel_Yi 阅读(3251) 评论(0) 推荐(0) 编辑