摘要: 1 #include 2 #include 3 #include 4 #include 5 using namespace std; 6 14 int main(int argc, const char *argv[])15 {16 vector vec;17 18 vec... 阅读全文
posted @ 2014-11-05 15:28 xzyline 阅读(215) 评论(0) 推荐(0) 编辑
摘要: 注意点:前++和后++的区别。>>操作符注意处理输入失败的情形代码: 1 #ifndef INTEGER_H_ 2 #define INTEGER_H_ 3 4 #include 5 6 class Integer 7 { 8 9 friend std::ostream &opera... 阅读全文
posted @ 2014-11-05 14:54 xzyline 阅读(234) 评论(0) 推荐(0) 编辑
摘要: 写一个Date类a)数据成员:year/month/dayb)提供两个构造函数c)实现功能setDate设置日期d)把时间设定为今天setToday();e)toString()打印格式:2009/7/31f)toFormatString:对于月份采用英文September192014g)isLea... 阅读全文
posted @ 2014-11-04 22:55 xzyline 阅读(255) 评论(0) 推荐(0) 编辑