Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何使用代码将输入传递到命令行。例如,我想启动命令行,运行可执行文件,代码里面会有类似“start”的命令,当文件运行时,这些命令将被传递到命令行。
使用windows下的system()函数,例如你想给命令行传递一个命令,比如暂停,使用
system("pause");
等等..
这与打开cmd并在那里写入暂停并执行它相同!