Hi all I'm new to the CIS field thought it would be a great new career at 40 years old. LOL the first week was great, but wow this second week is crazy with information. Need help with this program, can't seem to get my formula correct. Thanks in advance. Also can't get the second interest rate to add the 1.5%, and can't get the statement to loop again to ask for another input amount. This is what I have so far any suggestions on what I'm missing. If I figure it out before an answer, thanks for looking at it in advance.
#include <iostream>
using namespace std;
// This program outputs the balance on a revolving credit account, interest due, and minimum
// payment due. The interest is computed as follows: 1.5% tax on the first $1,000 of
// the balance plus 1.0% on any balance over $1,000.
int main()
{
cout.setf(ios::fixed);
cout.setf(ios::showpoint);
cout.precision(2);
thanks a lot with a few minor changes everything was ok. Here's the new code.
#include <iostream>
using namespace std;
// This program outputs the balance on a revolving credit account, interest due, and minimum
// payment due. The interest is computed as follows: 1.5% tax on the first $1,000 of
// the balance plus 1.0% on any balance over $1,000.
int main()
{
cout.setf(ios::fixed);
cout.setf(ios::showpoint);
cout.precision(2);