FINAL EXAM

We are in DESPERATE need

i have a final exam for computer science and i need help/ suggestions for this assignment.
any input is greatly appreciated. we're beginning c++ users so bear with us (:

Program is a "Gas Station" must use functions, we must use outside files files, and have menus using the global enviroments.
here's the data provided for us
starting amount $100,000
Types of gasoline & prices:
regular-1.149
Plus-1.199
super-1.289
diesel-1.351
we have to sell merchandise at the store such as: chips, sodas, energy drinks, and special items like ciggarettes,alcohol,&lotto tickets should have age restrictions. items must be reordered in account to the popularity of them. we need to have specials, such as buy 1 get 1 free & other nonsense like that. it has to be "menu driven" , we have to include "partners" which are restaurants attached to the gas station, the ones provided are McDonalds,Pizza hut,Subway,&wendys' these restauraunts shouldnt be too intricate and provide simple items i.e dollar menus for the burger places. it must include a reciept after everything is done, and a 2% charge will be added for full service at the gas pump if user decides to get full service, a record of employee's hourly rates & paychecks must be provided, there should be 2 payment options, credit(5% charge) or cash and payment method should be printed on the reciept

Thanks a bunch we'll greatly appreciate any help and please help us this is due december 16th & 17th at latest!!
- Albert long & Leo marchiki
A lot of stuff for starting 2 days before it's due...if you don't have any code, I can't help you.
Well... sounds like the two of you are totally screwed and waited till the last minute. That's not exactly 5 hours of coding. I agree with firedraco, no code, no help.
heres a little code just the menus
#include <iostream>

using namespace std;
void menu();
void menu2();
void menu3();
void menu4();
void menu5();
void menu6();
void menu7();
void menu8();
int main ()
{
{menu();}



return 0;
}

void menu()
{
cout<<"***************************************\n";
cout<<"* Albert & Leo's Gas n' Grub *\n";
cout<<"* Laredo, Tx 78041 *\n";
cout<<"* 4209 Street Ln. *\n";
cout<<"***************************************\n";
}
void menu2()
{
cout<<"***************************************\n";
cout<<"* Gasoline *\n";
cout<<"* *\n";
cout<<"* Regular...........$1.149 *\n";
cout<<"* Plus..............$1.199 *\n";
cout<<"* Super.............$1.289 *\n";
cout<<"* Diesel............$1.351 *\n";
cout<<"* *\n";
cout<<"***************************************\n";
}
void menu3()
{
cout<<"***************************************\n";
cout<<"* Merchandise *\n";
cout<<"* *\n";
cout<<"* Chips................$0.50 *\n";
cout<<"* Soda.................$1.25 *\n";
cout<<"* Candy................$0.75 *\n";
cout<<"* Delux Combo(2 items).$1.50 *\n";
cout<<"* Ultra Combo(3 items).$2.25 *\n";
cout<<"* *\n";
cout<<"***************************************\n";
}
void menu4()
{
cout<<"***************************************\n";
cout<<"* Special items *\n";
cout<<"* *\n";
cout<<"* Cigarettes(must be 18)...$4.99 *\n";
cout<<"* Lotto Ticket(must be 18).$5.00 *\n";
cout<<"* Alcohol(must be 21)......$7.99 *\n";
cout<<"* *\n";
cout<<"***************************************\n";
}
void menu5()
{
cout<<"***************************************\n";
cout<<"* McDonalds *\n";
cout<<"* *\n";
cout<<"* Cheeseburger............$0.99 *\n";
cout<<"* Spicy Chicken...........$0.99 *\n";
cout<<"* 4 pc. Nuggets...........$0.99 *\n";
cout<<"* Small fries.............$0.99 *\n";
cout<<"* Apple pie...............$0.50 *\n";
cout<<"* *\n";
cout<<"***************************************\n";
}
void menu6()
{
cout<<"***************************************\n";
cout<<"* Wendy's *\n";
cout<<"* *\n";
cout<<"* Cheeseburger............$0.99 *\n";
cout<<"* Crispy Chicken..........$0.99 *\n";
cout<<"* 4 pc. Nuggets...........$0.99 *\n";
cout<<"* Small fries.............$0.99 *\n";
cout<<"* Frosty..................$0.50 *\n";
cout<<"* *\n";
cout<<"***************************************\n";
}
void menu7()
{
cout<<"***************************************\n";
cout<<"* Pizza Hut *\n";
cout<<"* *\n";
cout<<"* Small Pizza.............$4.99 *\n";
cout<<"* Medium Pizza............$5.99 *\n";
cout<<"* Large Pizza.............$6.99 *\n";
cout<<"* Bread Sticks............$2.99 *\n";
cout<<"* Wings...................$3.50 *\n";
cout<<"* *\n";
cout<<"***************************************\n";
}
void menu8()
{
cout<<"***************************************\n";
cout<<"* Subway *\n";
cout<<"* *\n";
cout<<"* 5 Dollar ft. long.......$5.00 *\n";
cout<<"* 6 in. sub...............$3.00 *\n";
cout<<"* Cookies.................$0.50 *\n";
cout<<"* *\n";
cout<<"***************************************\n";
}



good luck!
no suggestions?
Suggestion:

Tell the professor that you irresponsibly waited until last minute and beg for an extension. If you're lucky, very lucky, he'll grant you it and then you better work your butt off to make it worth the wait.

Hopefully you'll learn from this not to wait until last minute. (And how much more last minute can you get?, really?)
thanks for the help mikeb570 :D
Topic archived. No new replies allowed.