我需要让程序等待一段时间才能继续。我试过:system("stop")
但控制台输出是:
“'停止'不被视为内部或外部命令,可操作
程序或批处理文件。“。我需要用c ++回答。Is there a decent wait function in C++?中的答案不起作用。
答案 0 :(得分:4)
以下内容会使您的程序停止。至少在接下来的一年左右。大致。额外奖励:便携式,不会耗尽笔记本电脑的电池。
#include <chrono>
#include <thread>
int main() {
using namespace std::chrono_literals;
std::this_thread::sleep_for(8760h);
return 0;
}