摘要: Input年、月、日和时、分、秒Output年、月、日和时、分、秒Sample Input2013 12 2314 23 50Sample Output2013/12/2314:23:50#include using namespace std; class Time; class Date { public: Date(int y,int m,int d){year=y;month=m;day=d;}; friend void display(const Date &,const Time &); int year; int month; int day; }; class 阅读全文
posted @ 2014-04-10 21:28 浅水戏虾sty 阅读(5429) 评论(0) 推荐(0) 编辑