帮忙编个程序:定义一个表示时间的结构体,可以精确表示年,月,日,小时,分,秒;提示用户输入年,月,,小时,分,秒的值,然后完整的显示出来 30分钟搞定给我,加分

问题描述:

帮忙编个程序:定义一个表示时间的结构体,可以精确表示年,月,日,小时,分,秒;提示用户输入年,月,
,小时,分,秒的值,然后完整的显示出来 30分钟搞定给我,加分

#includeusing namespace std ;typedef struct{ int year ; int month ; int day; int hour ; int minute ; int second ;} Time ;int main(){ Time *time = new Time() ; cout > time->year ; cout > time->month ; ...