这期向大家分享一款自编c++秒表。
非常简单。包括Sleep函数知识点。
#include<bits/stdc++.h>
#include<windows.h>
using namespace std;
int main(){
int t=0,r=0,s=0,p=0;
system("PAUSE");
for(;;){
system("cls");
t++;
if(s==24){
p++;
s=0;
}
if(r==60){
s++;
r=0;
}
if(t==60){
r++;
t=0;
}
cout<<"时间:"<<p<<"天"<<s<<"时"<<r<<"分"<<t<<"秒";
Sleep(1000);
}
return 0;
}
下期再见!!!