我的cpp
#include<stdio.h>
#include<iostream>
using namespace std;
int main()
{
freopen("input.txt","r",stdin); // All inputs from 'input.txt' file
int n,m;
cin>>n>>m;
cout<<(n+m)<<endl;
return 0;
}
该文件input.txt
可能包含:
输入.txt
10 20
用于构建和运行代码的命令行 -
g++ myC.cpp -o myC
myC
它产生从文件30
获取输入的输出。input.txt
现在我正在寻找一个命令,它同样会从文件中获取输入,但要避免在代码中使用 freopen() 。
可能是这样的——
g++ myC.cpp -o myC // To compile
myC -i input.txt // To run with input