1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214
|
#include <iostream>
#include <iomanip>
using namespace std;
int main()
{
int choice;
int quantity;
double price;
double salesTax;
double tip;
double totalBill;
const double SALMON = 26.99,
STEAK = 18.99,
CHICKEN = 12.99,
SALAD = 5.99,
SOUP = 7.99,
HAMBURGER = 4.99,
SODA = 1.29,
TEA = 1.50,
OJ = 2.50;
const int SALMON_CHOICE = 1,
STEAK_CHOICE = 2,
CHICKEN_CHOICE = 3,
SALAD_CHOICE = 4,
SOUP_CHOICE = 5,
HAMBURGER_CHOICE = 6,
SODA_CHOICE = 7,
TEA_CHOICE = 8,
OJ_CHOICE = 9;
cout << "" << "\n"
<< "\t\tWelcome to the Java restaurant.\n You can choose from the following items: \n\n"
<< "1. Grilled Salmon, price $26.99\n"
<< "2. New York Steak, price $18.99\n"
<< "3. Roast Chicken, price $12.99\n"
<< "4. Salad, price $5.99\n"
<< "5. Soup, price $7.99\n"
<< "6. Hamburger, price $4.99\n"
<< "7. Soft drink, price $1.29\n"
<< "8. Tea, price $1.50\n"
<< "9. Orange Juice, price $2.50\n\n"
<< "Select a number from the menu: ";
cin >> choice;
cout << fixed << showpoint << setprecision(2);
if (choice == SALMON_CHOICE)
{
cout << "Enter the quantity: ";
cin >> quantity;
price = quantity * SALMON;
salesTax = .0925 * price;
cout << "\n"
<< "The item price for ("<< quantity << " x Grilled Salmon) is $" << price << "\n"
<< "The sales tax is $" << salesTax << "\n"
<< "\n"
<< "Enter the gratuity amount: ";
cin >> tip;
totalBill = (price + salesTax + tip);
cout << "\n"
<< "Your total bill is $" << totalBill << "\n"
<< "\n"
<< "Thank you for your order"<<endl;
}
else if (choice == STEAK_CHOICE)
{
cout << "Enter the quantity: ";
cin >> quantity;
price = quantity * STEAK;
salesTax = .0925 * price;
cout << "\n"
<< "The item price for ("<< quantity << " x New York Steak) is $" << price << "\n"
<< "The sales tax is $" << salesTax << "\n"
<< "\n"
<< "Enter the gratuity amount: ";
cin >> tip;
totalBill = (price + salesTax + tip);
cout << "\n"
<< "Your total bill is $" << totalBill << "\n"
<< "\n"
<< "Thank you for your order"<<endl;
}
else if (choice == CHICKEN_CHOICE)
{
cout << "Enter the quantity: ";
cin >> quantity;
price = quantity * CHICKEN;
salesTax = .0925 * price;
cout << "\n"
<< "The item price for ("<< quantity << " x Roasted Chicken) is $" << price << "\n"
<< "The sales tax is $" << salesTax << "\n"
<< "\n"
<< "Enter the gratuity amount: ";
cin >> tip;
totalBill = (price + salesTax + tip);
cout << "\n"
<< "Your total bill is $" << totalBill << "\n"
<< "\n"
<< "Thank you for your order"<<endl;
}
else if (choice == SALAD_CHOICE)
{
cout << "Enter the quantity: ";
cin >> quantity;
price = quantity * SALAD;
salesTax = .0925 * price;
cout << "\n"
<< "The item price for ("<< quantity << " x Salad) is $" << price << "\n"
<< "The sales tax is $" << salesTax << "\n"
<< "\n"
<< "Enter the gratuity amount: ";
cin >> tip;
totalBill = (price + salesTax + tip);
cout << "\n"
<< "Your total bill is $" << totalBill << "\n"
<< "\n"
<< "Thank you for your order"<<endl;
}
else if (choice == SOUP_CHOICE)
{
cout << "Enter the quantity: ";
cin >> quantity;
price = quantity * SOUP;
salesTax = .0925 * price;
cout << "\n"
<< "The item price for ("<< quantity << " x Soup) is $" << price << "\n"
<< "The sales tax is $" << salesTax << "\n"
<< "\n"
<< "Enter the gratuity amount: ";
cin >> tip;
totalBill = (price + salesTax + tip);
cout << "\n"
<< "Your total bill is $" << totalBill << "\n"
<< "\n"
<< "Thank you for your order"<<endl;
}
else if (choice == HAMBURGER_CHOICE)
{
cout << "Enter the quantity: ";
cin >> quantity;
price = quantity * HAMBURGER;
salesTax = .0925 * price;
cout << "\n"
<< "The item price for ("<< quantity << " x Hamburger) is $" << price << "\n"
<< "The sales tax is $" << salesTax << "\n"
<< "\n"
<< "Enter the gratuity amount: ";
cin >> tip;
totalBill = (price + salesTax + tip);
cout << "\n"
<< "Your total bill is $" << totalBill << "\n"
<< "\n"
<< "Thank you for your order"<<endl;
}
else if (choice == SODA_CHOICE)
{
cout << "Enter the quantity: ";
cin >> quantity;
price = quantity * SODA;
salesTax = .0925 * price;
cout << "\n"
<< "The item price for ("<< quantity << " x Soft drink) is $" << price << "\n"
<< "The sales tax is $" << salesTax << "\n"
<< "\n"
<< "Enter the gratuity amount: ";
cin >> tip;
totalBill = (price + salesTax + tip);
cout << "\n"
<< "Your total bill is $" << totalBill << "\n"
<< "\n"
<< "Thank you for your order"<<endl;
}
else if (choice == TEA_CHOICE)
{
cout << "Enter the quantity: ";
cin >> quantity;
price = quantity * TEA;
salesTax = .0925 * price;
cout << "\n"
<< "The item price for ("<< quantity << " x Tea) is $" << price << "\n"
<< "The sales tax is $" << salesTax << "\n"
<< "\n"
<< "Enter the gratuity amount: ";
cin >> tip;
totalBill = (price + salesTax + tip);
cout << "\n"
<< "Your total bill is $" << totalBill << "\n"
<< "\n"
<< "Thank you for your order"<<endl;
}
else if (choice == OJ_CHOICE)
{
cout << "Enter the quantity: ";
cin >> quantity;
price = quantity * OJ;
salesTax = .0925 * price;
cout << "\n"
<< "The item price for ("<< quantity << " x Orange Juice) is $" << price << "\n"
<< "The sales tax is $" << salesTax << "\n"
<< "\n"
<< "Enter the gratuity amount: ";
cin >> tip;
totalBill = (price + salesTax + tip);
cout << "\n"
<< "Your total bill is $" << totalBill << "\n"
<< "\n"
<< "Thank you for your order"<<endl;
}
return 0;
}
|