system(“pause”) 不适用于 freopen
请参阅下面的评论。
int main(){
//freopen("input.txt","r",stdin);//if I uncomment this line the console will appear and disappear immediately
int x;
cin>>x;
cout<<x<<endl;
system("pause");
return 0;
}
如何让它发挥作用?
See below in comment.
int main(){
//freopen("input.txt","r",stdin);//if I uncomment this line the console will appear and disappear immediately
int x;
cin>>x;
cout<<x<<endl;
system("pause");
return 0;
}
How to make it work?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
解决方案 1:使用
cin.ignore
而不是system
:解决方案 2:如果您使用的是 MS Visual Studio,请按 Ctrl+F5
解决方案 3:重新打开
con
code> (仅适用于 Windows,似乎是您的情况)如果您使用解决方案 3,请不要忘记添加有关代码正在执行的操作及其原因的注释:)
Solution 1: use
cin.ignore
instead ofsystem
:Solution 2: if you are using MS Visual Studio, press Ctrl+F5
Solution 3: reopen
con
(will only work on Windows, seems your case)If you use solution 3, don't forget to add comments on what the code is doing and why :)
使用
std::ifstream
而不是重定向 stdin:(从 anatolyg 的答案中借用了
cin.ignore
技巧)Use
std::ifstream
instead of redirecting stdin:(Borrowed the
cin.ignore
trick from anatolyg's answer)您可以使用
freopen
来更改程序的标准输入。您启动的任何程序都会继承程序的标准输入,包括pause
程序。pause
程序从 input.txt 读取一些输入并终止。You use
freopen
to change your program's standard input. Any program you start inherits your program's standard input, including thepause
program. Thepause
program reads some input from input.txt and terminates.