This is what I have on my program so far. I do not know what to do next.
Thanks alot,
Kilo
// Write a program to help a local restaurant automate its breakfast billing
//system. Show the customer the different breakfast itmes offered by the
//restaurant. Allow the customer to select more than one item from the menu.
//Calculate and print the bill.
#include <iostream>
#include <fstream>
#include <string>
using namespace std;
struct menuList //Define struct menuList with members
{
string Eggs;
string BaconandEggs;
string Muffin;
string FrenchToast;
string FruitBasket;
string Cereal;
string Coffee;
string Tea;
string price:
};
void getData();
void showMenu();
void printcheck();
int main()
{
menuList menuItemType; // declare variable
void getData();
menuItemList.Eggs; //Access a struct member components
menuItemList.BaconandEggs;
menuItemList.Muffins;
menuItemList.FrenchToast;
menuItemList.FruitBasket;
menuItemList.Cereal;
menuItemList.Coffee;
menuItemList.Tea;
menuItemList.price = 0.0;
void showMenu();
cin >> menuItemType.Eggs >> menuItemType.BaconandEggs;
cin >> menuItemType.Muffin;
cin >> menuItemType.FrenchToast;
cin >> menuItemType.FruitBasket;
cin >> menuItemType.Cereal;
cin>> menuItemType.Coffee;
cin >> menuItemType.Tea;
void printCheck();
system("PAUSE");
return EXIT_SUCCESS;
}