#include <iostream>
#include <windows.h>
#include <stdio.h>
using namespace std;
int main()
{
while(1) {
Sleep(1000);
cout << "ddd" << endl;
}
return 0;
}
计时器 每个一秒输出一次
最新推荐文章于 2024-01-30 18:08:42 发布
#include <iostream>
#include <windows.h>
#include <stdio.h>
using namespace std;
int main()
{
while(1) {
Sleep(1000);
cout << "ddd" << endl;
}
return 0;
}