第三周任务二

调试程序,检查错误

#include <iostream>

 

using namespace std;

 

class Time

{

public:                 // 成员应改为公共成员,可被类外函数引用

 

       inthour;

 

       intminute;

 

       intsec;

};

 

Time t;

 

void set_time(void)       //在main之前对set_time定义

{

       cin>> t.hour;

 

       cin>> t.minute;

 

       cin>> t.sec;

 

}

 

void show_time(void)     //在main之前对show_time定义

{

       cout<< t.hour << ":" << t.minute << ":"<< t.sec << endl;

}

int main ()

{

       set_time();

 

       show_time();

 

       return0;

}

第三周任务二_第1张图片

 

你可能感兴趣的:(任务)