I'm getting this error on the below code and can't seem to see where i'm going wrong. Please could someone point me in the right direction. Thanks in advance.
**************The Error is ************************
*******In function 'float calcActualAmount(float,int)'
Line62*expected 'while' before '(' token
The piece of code i'm getting the error on is:
************************************************
********************************************
#include <iostream>
using namespace std;
const float maxPerUnit = 20000.00;
//minPerChild includes a standard gift consisting of a bath towel and a facecloth
const float minPerChild = 100.00;
const float maxPerChild = 180.00;
//depending on the amount, the child may also get one or more of the following;
const float TOOTHBRUSH = 29.95;
const float HIGHLIGHTERS = 25.95;
const float CRAYONS = 17.95;
const float NOTEBOOK = 12.95;
const float PEN = 9.99;
int main()
{
float amtGift; // Allowed amount per child
float amtSpentPerChild = 0.00; // actual amount spent per child
float totalSpent = 0.00; // total spent for 1 orphanage
float totalAll = 0.00; // total spent for all 4 orphanages
int nrChildren;