This commit is contained in:
Brook-Hsu 2021-09-03 20:52:24 +08:00 committed by GitHub
parent 388564c9d9
commit 4ce9ef2078
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,5 +1,5 @@
/* /*
++++1使 ++++1使
*/ */
#include<iostream> #include<iostream>
using namespace std; using namespace std;
@ -12,7 +12,7 @@ class Time{
} }
void operator++(); void operator++();
void showTime(){ void showTime(){
cout<<"当前时间为:"<<hour<<":"<<minute<<":"<<second<<endl; cout<<"当前时间为:"<<hour<<":"<<minute<<":"<<second<<endl;
} }
private: private:
@ -22,7 +22,7 @@ class Time{
void Time::operator++(){ void Time::operator++(){
++second; ++second;
if(second=60){ if(second==60){
second=0; second=0;
++minute; ++minute;
if(minute==60){ if(minute==60){