constdouble R = 3.39 ; constdouble U = 3.55; constdouble P = 3.65; constdouble N = 0; //
constdouble WWG = 4.25; constdouble WWOG = 10; // WWG= wash with gas over 30, WWOG = wash without gas or less than 10
double total, amount;
string name,choice; // choice = waht kind of oil
ifstream inputFile;
char wash; // wash or not wash
inputFile.open("customers.txt");
inputFile.ignore();
for (int a =0; a<5; a++)
{
inputFile >>name >> choice >> amount >> wash ;
cout<<"********************************************************\n";
cout<<"* Best Gas and Wash Service *\n";
cout<<"********************************************************\n";
cout<<" Customer : "<<name<< endl;
cout<<" \n";
cout.fixed;
cout<<" Gallons purchased : "<<amount<< endl;
cout<<" Price per gallon : "<<choice<<endl; //it will show letters instead of the numbers i assigned in the beginning
cout<<"\n";
cout<<" Total gasoline cost :";.