system(“pause”) 不适用于 freopen

发布于 2024-12-12 03:57:56 字数 283 浏览 0 评论 0原文

请参阅下面的评论。

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

末蓝 2024-12-19 03:57:56

解决方案 1:使用 cin.ignore 而不是 system

...
cout<<x<<endl;
cin.ignore(1, '\n'); // eats the enter key pressed after the number input
cin.ignore(1, '\n'); // now waits for another enter key
...

解决方案 2:如果您使用的是 MS Visual Studio,请按 Ctrl+F5

解决方案 3:重新打开 con code> (仅适用于 Windows,似乎是您的情况)

...
cout<<x<<endl;
freopen("con","r",stdin);
system("pause");
...

如果您使用解决方案 3,请不要忘记添加有关代码正在执行的操作及其原因的注释:)

Solution 1: use cin.ignore instead of system:

...
cout<<x<<endl;
cin.ignore(1, '\n'); // eats the enter key pressed after the number input
cin.ignore(1, '\n'); // now waits for another enter key
...

Solution 2: if you are using MS Visual Studio, press Ctrl+F5

Solution 3: reopen con (will only work on Windows, seems your case)

...
cout<<x<<endl;
freopen("con","r",stdin);
system("pause");
...

If you use solution 3, don't forget to add comments on what the code is doing and why :)

演多会厌 2024-12-19 03:57:56

使用 std::ifstream 而不是重定向 stdin:(

#include <fstream>
#include <iostream>

int main()
{
    std::ifstream fin("input.txt");
    if (fin)
    {
        fin >> x;
        std::cout  << x << std::endl;
    }
    else
    {
        std::cerr << "Couldn't open input file!" << std::endl;
    }

    std::cin.ignore(1, '\n'); // waits the user to hit the enter key
}

从 anatolyg 的答案中借用了 cin.ignore 技巧)

Use std::ifstream instead of redirecting stdin:

#include <fstream>
#include <iostream>

int main()
{
    std::ifstream fin("input.txt");
    if (fin)
    {
        fin >> x;
        std::cout  << x << std::endl;
    }
    else
    {
        std::cerr << "Couldn't open input file!" << std::endl;
    }

    std::cin.ignore(1, '\n'); // waits the user to hit the enter key
}

(Borrowed the cin.ignore trick from anatolyg's answer)

若沐 2024-12-19 03:57:56

您可以使用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 the pause program. The pause program reads some input from input.txt and terminates.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文