hello
ive been working on this project for the past couple of days, and i keep on getting the same error. it tells me that the term will not evaluate a function with two arguments. please help me! thanks
#include <iostream>
#include <cmath>
using namespace std;
int main ()
{
double num1, num2, num3, pow, total;
cout << "Loan Amount: ";
cin >> num1;
cout << "Monthly Interest Rate: ";
cin >> num2;
cout << "Number of Payments: ";
cin >> num3;
cout << "Monthly Payments: ";
cin >> num2 * pow(1.0 + num2, num3) / (pow(1.0 + num2, num3) - 1) * num1;
return 0;
}