您好我正在学习C ++,我想知道如何在开始之前暂停我的代码3秒钟 所以当这个人进入时它会暂停三秒钟
#include <iostream>
using namespace std;
int main()
{
int x = 10;
cout<<"BEGIN\n";
cin.get();
while( x < 11 ) {
cout<<"123456789";
}
}
答案 0 :(得分:0)
延迟和时间是一个平台问题,您需要使用特定于平台的API。
在网络上搜索您的Platform API和“睡眠事件”字样。