1. ホーム
  2. c++

[解決済み】関数が1つの引数を取らない c++

2022-02-12 12:31:23

質問

私のコードに問題があり、なぜエラーが発生するのかがわかりません。以下がそのコードです。

using namespace std;

void presentValue();
bool stringChar();
bool stringVal();
double futureValConv();

int main()
{
  cout << "Welcome to the Present Value Interest Calculator!\n\"First, let me collect some data." << endl << endl;
  presentValue();
  return 0;
}

void presentValue()
{
  //declare variables
  //Response value intialized as x for debugging
  char response = 'x';

  while (response != 'n' || response != 'N')
  {
    //declare variables
    double intRate = 0;
    string futureValString;
    double futureVal;
    double years = 0;

    //Simple present value equation
    double presentVal = futureVal / pow((intRate + 1), years);

    cout << "What's your Interest Rate?  ";
    cin >> intRate;
    cout << "OK, and what's your desired Future Value? [H}elp  ";
    cin >> futureVal;
    //Run descending help program that won't allow escape without a double value
    **futureVal = futureValConv(futureValString);**
    cout << endl << endl << "And finally, how many years would you like to save your money for?  ";
    cin >> years;
    cout << endl << "You've made it this far!!!";
    cout << endl << endl << presentVal;

  }
}
inline double futureValConv(string somestring)
{
  //delcare variables
  double newString = 0;

  **if (stringChar(somestring))**
  {
    cout << endl << "Future Value is the amount you would like to have in your account in the future.\n\n";
    cout << "How much might that be?  ";
    cin >> somestring;
    futureValConv(somestring);

  }
  **else if(stringVal(somestring))**
  {
    //Convert the Future Value String to a double for future use
    newString = atoi(somestring.c_str());
  }  
  else
  {
    cout << "Please enter a proper value.  ";
    futureValConv(somestring);
  }

  return newString;
}

bool stringChar(string response)
{
  //declare variables
  char answer = response[0];
  bool status = false;

  if (answer == 'H' || answer == 'h')
  {
    status = true;
    return status;
  }
}

bool stringVal(string response)
{
  //declare varialbes
  int answer = atoi(response.c_str());
  bool status = false;
  int powZero = (answer, 0);

  if (powZero == 1)
  {
    status = true;
    return status;
  }

}

何が起こっているのか把握できないので、私のコードのほとんどを掲載しました。 stringCharとstringValはfutureValConvと同様に1つの引数を取らないことを教えてくれています。私は、文字列の値をチェックする関数を実行し、その値が何であるかを決定する前に決定しようと試みています。3つのインスタンスのうち2つで、ユーザーが許容できる2倍を入力するまで、関数が自分自身を呼び出して再度実行されます(1の答えのために0の累乗を実行して確認します)。興味深いことに、関数futureValConvをコメントアウトして、他の関数を呼び出さないようにしても、3つのエラーのうち2つは発生します。

解決方法は?

トップで宣言したんですね。

bool stringChar();
bool stringVal();

つまり、コンパイラはstringCharとstringVal関数が引数を持たないことを想定しているのです。 宣言を次のように変更します。

bool stringChar(string response);
bool stringVal(string response);