WEB开发网
开发学院软件开发C++ c++实现每隔1秒钟执行一段程序 阅读

c++实现每隔1秒钟执行一段程序

 2013-01-07 17:33:46 来源:WEB开发网   
核心提示: #include <iostream>#include <ctime>using namespace std;int getTime() {return clock()/CLOCKS_PER_SEC;}int main() {int i = 0;int lastTime = 0;while (

 #include <iostream>
#include <ctime>
using namespace std;

int getTime() {
return clock()/CLOCKS_PER_SEC;
}

int main() {
int i = 0;
int lastTime = 0;
while (1) {
int now = getTime();
if (now - lastTime > 0) {
cout << ++i << endl;
lastTime = now;
}
}
return 0;
}

Tags:实现 秒钟 执行

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接