所以,编写我的第一个程序!任何有关上述错误的提示都将受到赞赏! :)
我得到不匹配的形式参数列表,无法解决函数重载。
#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;
}
答案 0 :(得分:0)
您对
的期望是什么?futureValue = ( presentValue * 1 + interestRate / 1200.0 , 36) << endl;
endl
要在这一行结束时做什么?您想将结果移位endl
位吗?您想要\n
附加到futureValue
并在之后刷新吗?