我想在提供标准输入的 Code::blocks IDE 程序中执行。
说
#include <iostream>
#include <cmath>
using namespace std;
int main()
{
double a;
double b;
cout << "Side one\n";
cin >> a;
cout << "Side two\n";
cin >> b;
cout << "Result :" << sqrt(a*a + b*b) << endl;
}
使用文件中提供的参数 "a" 和 "b" :
说:
2 4
我可以在 bash 中做到这一点,编译然后:
"./my_compiled_program < ./myinput"
我只是想在 code::blocks 中拥有带有参数(标准输入)的文件。
我怎样才能做到这一点?PS:不幸的是,“设置程序的参数”不起作用