Code:
MortSched(fLoanAmount, fInterestRate, fYears);
MortSched(fLoanAmount, fInterestRate, fYears);
#include <iostream> #include <iomanip> #include <cmath> #include <cctype> #include <stdlib.h> #include <sstream> using namespace std; void MortSched(double, double, int);
...insert code here....
#include <iostream> #include <iomanip> #include <cmath> #include <cctype> #include <string>
#include <iostream> #include <iomanip> #include <cmath> #include <cctype> using namespace std; int main() { double a; //This is the amount of the mortgage the user must enter double i; //This is the interest rate the
#include <iostream>
Leave a comment: