我正试图找到一种方法来暂停或睡眠我的简单c ++程序,例如Python中的time.sleep(x)
。 C ++中有等价的吗?我想要使用它的一个例子是:
#include <iostream>
using namespace std;
int main() {
for (int x = 0 ; x < 100 ; x++) {
cout << 100 - x << " bottles of beer on the wall, "
<< 100 - x << " bottles of beer!\nTake one down pass it around "
<< 100 - (x + 1) << " bottles of beer on the wall\n\n";
//enter sleep here to pause before next output
}
}
由于
答案 0 :(得分:0)
您可以使用WinAPI或POSIX Sleep(ms)
usleep(mcrsec)
功能