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>
using namespace std;
@ -12,7 +12,7 @@ class Time{
}
void operator++();
void showTime(){
cout<<"当前时间为:"<<hour<<":"<<minute<<":"<<second<<endl;
cout<<"当前时间为:"<<hour<<":"<<minute<<":"<<second<<endl;
}
private:
@ -22,7 +22,7 @@ class Time{
void Time::operator++(){
++second;
if(second=60){
if(second==60){
second=0;
++minute;
if(minute==60){