2

それで、私の最初のプログラムを書きます!上記のエラーに関するヒントをいただければ幸いです!! :)
仮パラメータ リストの不一致が発生し、関数のオーバーロードを解決できません。

大変感謝します、

#include <iostream>
#include <cmath>
#include "COMPFUN.H"
using namespace std;

int main()


{
    double futureValue = 0.0;
    double presentValue = 0.0;
    double interestRate = 0.0;


    cout << "Please enter Present Value: ";
    cin >> presentValue;
    cout << "Please enter rate: ";
    cin >> interestRate;


futureValue = ( presentValue * 1 + interestRate / 1200.0 , 36) << endl;

    cout << "Future value is: " << futureValue << endl;
    system("pause");
    return 0;
}
4

1 に答える 1

0

あなたは何を期待していますか

futureValue = ( presentValue * 1 + interestRate / 1200.0 , 36) << endl;

endlこの行の最後に何をしますか? endl結果をビット単位でシフトしますか? \n追加したいのですが、futureValue後でフラッシュしますか?

于 2013-05-23T23:06:07.747 に答える