📜  在 Windows 中进行控制 - C++ 代码示例

📅  最后修改于: 2022-03-11 14:44:47.801000             🧑  作者: Mango

代码示例1
#include 
using namespace std;
int main()
{
 //example on windows: try to open cmd and write pause command or echo hello (what you write between system("......"); is send to cmd)
 //this isn't for windows only but in linux ,ubunto,... .
 system("pause"); 
}