私はプログラミングに関しては非常に初心者ですが、YouTube でいくつかのチュートリアルを見て、さまざまなビデオで教えられている概念のいくつかを組み合わせてみることにしました。私がやりたいことは、株式市場への投資に対するリターンを計算する 3 つのパラメーターを持つ関数を用意することです。私のメインでは、ユーザーから関数の 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;
}