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
|
#include "stdafx.h"
#include <iostream>
#include <stdio.h>
int main ()
{
using namespace std;
cout << "Welcome to SM Supermarket!\n";
int code = 0;
string product[10];
product[0] = "Hagen Daaz";
product[1] = "Bounty Tissue";
product[2] = "Chips Ahoy Cookies";
product[3] = "Tide Laundry Detergent";
product[4] = "Lays Original Chips";
product[5] = "Sunny D Orange Juice";
product[6] = "Organic Bananas";
int priceA = 7, priceB = 10, priceC = 3, priceD = 6, priceE = 2, priceF =3, priceG = 5;
int priceAtwo = 0, priceBtwo = 0, priceCtwo = 0, priceDtwo = 0, priceEtwo = 0, priceFtwo = 0, priceGtwo = 0;
int amount = 0;
while (code != 111){
cout << "Please enter the barcode of your item, or press '111' to check out\n";
cin >> code;
if (code == 111){
goto skip_loop;
}
cout << "How many do you want to purchase?\n";
cin >> amount;
if (code == 0123){
priceAtwo = priceA * amount;
}
else if (code == 0124){
priceBtwo = priceB * amount;
}
else if (code == 0125){
priceCtwo = priceC * amount;
}
else if (code == 0126){
priceDtwo = priceD * amount;
}
else if (code == 0127){
priceEtwo = priceE * amount;
}
else if (code == 0133){
priceFtwo = priceF * amount;
}
else if (code == 0134){
priceGtwo = priceG * amount;
}
}
skip_loop:
int coupon = 0;
cout << "Please enter your coupon code, if you do not have any, please press '0'\n";
cin >> coupon;
if (coupon == 051){
cout << "50% discount of 'Bounty Tissue'\n";
priceBtwo = priceBtwo / 2;
}
else if (coupon == 017){
cout << "$2 off any Hagen Daaz product\n";
priceAtwo = priceAtwo - 2;
}
else if (coupon == 046){
cout << "$1 off two Lays original Chips\n";
priceEtwo = priceEtwo * 2 - 1;
}
else if (coupon == 035){
cout << "$1 off any Sunny D product\n";
priceFtwo = priceFtwo - 1;
}
else if (coupon == 0){
cout << "Your purchase is being processed\n";
}
int bags = 0;
cout << "How many bags would you like to purchase(1 bag/$1 each)?\n";
cin >> bags;
bags = bags * 1;
int subtotal = priceAtwo + priceBtwo + priceCtwo + priceDtwo + priceEtwo + priceFtwo + priceGtwo + bags;
cout << "Subtotal:\n " << subtotal;
int total = subtotal * 2;
cout << "\nTotal:\n " << total;
int payment = 0;
int pin = 0;
double change = 0;
double cash = 0;
cout << "\nWould you like to pay with debit or cash? Press '1' for debit and '2' for cash\n";
cin >> payment;
if (payment == 1){
cout << "Enter your pin number: ";
cin >> pin;
cout << "Approved. Your purchase is processing...\n";
}
else if (payment == 2){
cout << "Please enter the amount you are paying with:\n";
cin >> cash;
change = cash - total;
}
cout << "Thank you for your purchase. Your reciept is printing...\n";
cout << "<<<<<<<<<<<<<<<<<<<<<SM Supermarket>>>>>>>>>>>>>>>>>>>>>\n";
cout << " Cashier: Samantha & Madeleine\n";
cout << "\n";
cout << "\n";
cout << "--------------------------------------------------------\n";
printf("%s\n",product[0].c_str());
cout << "$" << priceAtwo << "\n";
printf("%s\n",product[1].c_str());
cout << "$" << priceBtwo << "\n";
printf("%s\n",product[2].c_str());
cout << "$" << priceCtwo << "\n";
printf("%s\n",product[3].c_str());
cout << "$" << priceDtwo << "\n";
printf("%s\n",product[4].c_str());
cout << "$" << priceEtwo << "\n";
printf("%s\n",product[5].c_str());
cout << "$" << priceFtwo << "\n";
printf("%s\n",product[6].c_str());
cout << "$" << priceGtwo << "\n";
cout << "\n";
cout << "Bags";
cout << "$" << bags;
cout << "\n";
cout << "-----------------";
cout << "Subtotal: " << subtotal << "\n";
cout << "Total: " << total << "\n";
cout << "Amount Given: " << cash << "\n";
cout << "Change: " << change << "\n";
cout << "-----------------";
cout << "Thanks for shopping at SM Supermarket!";
cout << "***************************************";
cout << "Please press '1' to exit. Have a nice day!";
int exit = 0;
cin >> exit;
}
| |