如何更改另一个程序的标准输入/输出?

发布于 2024-09-05 00:14:16 字数 340 浏览 6 评论 0原文

我有一个用 C++ 编写的控制台应用程序。它只是从标准输入(键盘)读取一个整数并将另一个整数写入标准输出(屏幕)。现在我想对该程序进行一些测试,并使用另一个程序检查其答案。换句话说,我想为该程序编写电子法官。我希望该程序(我想测试)从文件读取并写入文件而不更改源代码。我该怎么办呢。我尝试在执行 c++ 程序之前将输入和输出分配给文件,但它不起作用。

assign(input,'temp.in');
reset(input);
assign(output,'temp.out');
rewrite(output);
exec('domino.exe');
close(input);
close(output);

I have a console application written in c++. It simply reads an integer from standard input(keyboard) and writes another integer to standard output(screen). Now I want to give some tests to that program and check its answers using another program. In another words, I want to write electron judge for that program. I want that program(which I want to test) to read from file and write to file without changing source code. How can I do that. I tried assigning input&output to files before executing c++ program, but it did not worked.

assign(input,'temp.in');
reset(input);
assign(output,'temp.out');
rewrite(output);
exec('domino.exe');
close(input);
close(output);

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

溺ぐ爱和你が 2024-09-12 00:14:16

一个简单的解决方案是在从 shell 运行程序时重定向标准输入和输出,如下所示:

./someProgram < inputFile.txt > outputFile.txt

< 在输入文件之前,> 在输出之前文件。

A simple solution is to redirect standard input and output when running your program from your shell, like this:

./someProgram < inputFile.txt > outputFile.txt

The < precedes the input file, and the > precedes the output file.

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