hi, i really need help on program, i messed up really bad. can anyone help me.
Here is what i have so far:
#include <iostream>
#include <iomanip>
using namespace std;
int main ()
{
double balance, payment, interest, apr, new_balance;
int month;
month=1;
cout << "Tell us your loan balance, your apr, and how much you intend to pay each month." << endl;
cin >> balance;
cin >> apr;
apr=apr/100;
interest=(apr/12)*balance;
cin >> payment;
Your report should continue until the loan balance at the end of the month is 0.00. This will mean that the final payment will be equal to the principal plus the interest for the final month.
You can just edit your post if you wanna update. Also, speaking of editing, do that and put all of your code between code tags <> under the format section. Code is unreadable like this.