私はこの C++ エラーを 2 日間にわたって何時間もデバッグしようとしてきましたが、それを理解することも、検索で答えを見つけることもできません。これを修正する方法を教えてくれる人はいますか?
エラー:
111:44: error: arithmetic on a pointer to the function type 'double (double, int)'
return (principal * (pow((effective_rate + 1), years_elapsed)));
~~~~~~~~~~~~~~ ^
関連コード:
#include <iostream>
#include <iomanip>
#include <string>
#include <cmath>
using namespace std;
using std::ios;
using std::cin;
using std::cout;
using std::endl;
double effective_rate(double annual_rate, int num_times_compounded=0);
double balance(double annual_rate, double principal, double &years_elapsed, int num_times_compounded=0);
double annual_rate;
int num_times_compounded;
double principal;
double years_elapsed;
int main() {
//code to get inputs and do printouts
}
double effective_rate(double annual_rate, int num_times_compounded)
{
if (num_times_compounded > 0) {
return (pow((1 + (annual_rate/num_times_compounded)), num_times_compounded) - 1);
} else {
return (pow(e, annual_rate) - 1);
}
}
double balance(double annual_rate, double principal, double years_elapsed, int num_times_compounded)
{
if (num_times_compounded > 0) {
[**this is line 111:**] return (principal * (pow((effective_rate + 1), years_elapsed)));
} else {
return (principal * (pow( (effective_rate + 1), num_times_compounded) ) );
}
}
2 番目の関数は最初のeffective_rate
関数を認識していないようで、参照渡しに変更しても機能しないようです。シンプルで明白なものが欠けているに違いありませんか?