在编程方面,我是个大菜鸟,但我一直在 youtube 上观看一些教程,我决定尝试混合不同视频中教授的一些概念。我想要做的是有一个函数,它有 3 个参数来计算股票市场投资的回报。在我的 main 中,我想从用户那里获取函数的 3 个参数,并将每个参数存储在一个变量中,并在调用函数时将这些变量用作参数。我目前遇到了一个错误,但在我输入整个内容之前,我会向你们展示我的代码,也许你们会发现问题所在。
#include <iostream>
#include <cmath>
using namespace std;
float stockMarketCalculator(float p, float r, int t){
float a;
for(int day = 1; day <=t; day++){
a = p * pow(1+r, day);
cout << a << endl;
}
}
int main()
{
float p;
float r;
int t;
cout << "Please enter the principle" << endl;
cin >> p >> endl;
cout << "Please enter the rate" << endl;
cin >> r >> endl;
cout << "Please enter the time in days" << endl;
cin >> t >> endl;
cout << stockMarketCalculator(p, r, t);
return 0;
}