Possible Duplicate:
I need hints on my C++ homework involving loops, reading from a file and output
The program outputs the labels to the monitor correctly, and correctly displays the information to Customer Number 111.
The File "BeginningBalance.dat", which contains the first Customers ID, Beginning Balance, Payments, and Purchases, the second Customers ID, Beginning Balance, Payments, and Purchases respectively
111
100.00
200.00
50.00
222
200.00
300.00
I need to pull the first 4 numbers, and store them in the variables below.
while (inFile >> custNo >> beginBalance >> purchases >> payments)
{
Regardless of the Customers ID, I need labels above everything at the top of the monitor, explaining the numbers. But it placed another row of labels, from the first if statement that shouldn't be there.
if(custNo == 111 || custNo == 222)
{
cout << "Cust. No." <<
setw(12) << "Beg. Bal." <<
setw(12) << "Fin. Chrg." <<
setw(12) << "Purchases" <<
setw(12) << "Payments" <<
setw(12) << "End. Bal." << endl;
if the first number is 111 then custNo == 111, the next 3 numbers that are extracted from the file need to be stored.
if(custNo == 111)
{
cout << custNo <<
setw(15) << beginBalance <<
setw(10) << finCharge <<
setw(14) << purchases <<
setw(12) << payments <<
setw(11) << newBalance << endl;
}
Then the 5th number in the file will be 222 then custNo == 222, and next 3 numbers that are extracted from the file need to be stored in the same variables that custNo 111 uses.
if(custNo == 222)
{
cout << custNo <<
setw(15) << beginBalance <<
setw(10) << finCharge <<
setw(14) << purchases <<
setw(12) << payments <<
setw(11) << newBalance << endl;
}
After the labels, the information from custNo 111, and custNo 222 are displayed, under it all are the totals. But another problem is that it I don't know where to put it in the code that will make the same variables with different values add up with one another.
cout << endl << "Totals" <<
setw(12) << total <<
setw(10) << totChrg <<
setw(14) << totPur <<
setw(12) << totPay <<
setw(11) << total << endl;
This is the math I have set up.
finCharge = beginBalance * .01;
newBalance = purchases + payments + finCharge;
total = beginBalance + beginBalance;
totChrg = finCharge + finCharge;
totPur = purchases + purchases;
totPay = payments + payments;
How would I take off the second unnecessary row of labels?
How would I format the math code to correctly add everything up that needs to be added?