#include<iostream>
#include<ctime>
using namespace std;
int main(void)
{
clock_t start= clock();
size_t ss = 0;
while (1) {
if ((double)(clock()- start) / 1000.0 >= 1.0) {
start= clock();
cout << ss++ << endl;
if (ss >= 100000) {
ss = 0;
}
}
}
return 0;
}
C++实现以秒为单位的计数器
最新推荐文章于 2023-04-07 00:08:31 发布