parent
80c67be8ba
commit
1d53b76912
@ -1,27 +0,0 @@
|
|||||||
#include <iostream>
|
|
||||||
using namespace std;
|
|
||||||
class Time
|
|
||||||
{
|
|
||||||
public:
|
|
||||||
void setTime();
|
|
||||||
void showTime();
|
|
||||||
int hour, minute, sec;
|
|
||||||
};
|
|
||||||
|
|
||||||
void fun(Time &t)
|
|
||||||
{ t.hour=23; }
|
|
||||||
|
|
||||||
void Time::setTime()
|
|
||||||
{ cin>>hour>>minute>>sec; }
|
|
||||||
|
|
||||||
void Time::showTime()
|
|
||||||
{ cout<<hour<<":"<<minute<<":"<<sec<<endl;
|
|
||||||
}
|
|
||||||
|
|
||||||
int main()
|
|
||||||
{ Time t;
|
|
||||||
t.setTime();
|
|
||||||
fun(t);
|
|
||||||
t.showTime();
|
|
||||||
return 0;
|
|
||||||
}
|
|
Loading…
Reference in new issue