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
|
//Lab 8a
//A program that allows you to buy coffee, and at any time you can view total number of cups of each size sold, total amount of coffee sold, and total money made.
#include <iostream>
#include <iomanip>
using namespace std;
const double smallcost = 1.75;
const double mediumcost = 1.90;
const double largecost = 2.00;
char choice;
void tutorial(int & small, int & totalSmall, int & medium, int & totalMedium, int & large, int & totalLarge);
void sales(int & small, int & totalSmall, int & medium, int & totalMedium, int & large, int & totalLarge);
void sizesSold(int & small, int & totalSmall, int & medium, int & totalMedium, int & large, int & totalLarge);
void currentSold(int & small, int & totalSmall, int & medium, int & totalMedium, int & large, int & totalLarge);
void totalCupsSold(int & small, int & totalSmall, int & medium, int & totalMedium, int & large, int & totalLarge);
void totalSales(int & small, int & totalSmall, int & medium, int & totalMedium, int & large, int & totalLarge);
int main()
{
int small = 0;
int medium = 0;
int large = 0;
int totalSmall = 0;
int totalMedium = 0;
int totalLarge = 0;
char runagain;
do {
tutorial(small, totalSmall, medium, totalMedium, large, totalLarge);
cout << "Do you want to run this program again? Enter Y for yes : ";
cin >> runagain;
} while (runagain == 'y' || runagain == 'Y');
}
void initialize(int & small, int & medium, int & large)
{
small = 0;
medium = 0;
large = 0;
}
void tutorial(int & small, int & totalSmall, int & medium, int & totalMedium, int & large, int & totalLarge)
{
cout << fixed << setprecision(2) << endl;
cout << "Please select which option you would like." << endl;
cout << "1. Buy Coffee" << endl;
cout << "2. Display the cups of coffee of each size sold" << endl;
cout << "3. Display the total cups of coffee sold" << endl;
cout << "4. Display the total amount of money earned" << endl;
cout << "Your choice : ";
cin >> choice;
cout << endl;
switch (choice)
{
case '1':
sales(small, totalSmall, medium, totalMedium, large, totalLarge);
currentSold(small, totalSmall, medium, totalMedium, large, totalLarge);
break;
case '2':
sizesSold(small, totalSmall, medium, totalMedium, large, totalLarge);
break;
case '3':
totalCupsSold(small, totalSmall, medium, totalMedium, large, totalLarge);
break;
case '4':
totalSales(small, totalSmall, medium, totalMedium, large, totalLarge);
break;
default:
cout << "Invalid number selection. Please select a number between 1 and 4." << endl;
}
}
void sales(int & small, int & totalSmall, int & medium, int & totalMedium, int & large, int & totalLarge)
{
cout << "Please read the menu, and select the number \nof each size of coffee that you would like to \npurchase. If you would not like to purchase a certain \nsize of coffee, please enter '0'." << endl << endl;
cout << "Small Cup........................ $" << showpoint << setprecision(3) << smallcost << endl;
cout << "Medium Cup....................... $" << showpoint << setprecision(3) << mediumcost << endl;
cout << "Large Cup........................ $" << showpoint << setprecision(3) << largecost << endl;
cout << endl;
cout << "Please enter the number of cups you would like to purchase : ";
cout << endl;
cout << "+ Small cups you would like to purchase : ";
cin >> small;
cout << "+ Medium cups you would like to purchase : ";
cin >> medium;
cout << "+ Large cups you would like to purchase : ";
cin >> large;
cout << endl;
totalSmall += small;
totalMedium += medium;
totalLarge += large;
}
void sizesSold(int & small, int & totalSmall, int & medium, int & totalMedium, int & large, int & totalLarge)
{
cout << "Total number of small coffee cups sold : " << totalSmall << " ($" << (totalSmall * smallcost) << ")" << endl;
cout << "Total number of medium coffee cups sold : " << totalMedium << " ($" << (totalMedium * mediumcost) << ")" << endl;
cout << "Total number of large coffee cups sold : " << totalLarge << " ($" << (totalLarge * largecost) << ")" << endl;
cout << endl;
}
void currentSold(int & small, int & totalSmall, int & medium, int & totalMedium, int & large, int & totalLarge)
{
double moneyMade = 0;
moneyMade += small * smallcost;
moneyMade += medium * mediumcost;
moneyMade += large * largecost;
int totalCoffeeSold = small + medium + large;
cout << "The number of coffee cups sold is : " << totalCoffeeSold << endl;
cout << "Money earned is : $" << showpoint << moneyMade << endl;
cout << endl;
small = 0;
medium = 0;
large = 0;
}
void totalCupsSold(int & small, int & totalSmall, int & medium, int & totalMedium, int & large, int & totalLarge)
{
int totalSold = totalSmall + totalMedium + totalLarge;
cout << "The total number of coffee cups sold is : " << totalSold << endl;
cout << endl;
}
void totalSales(int & small, int & totalSmall, int & medium, int & totalMedium, int & large, int & totalLarge)
{
double moneySales = 0;
moneySales += totalSmall * smallcost;
moneySales += totalMedium * mediumcost;
moneySales += totalLarge * largecost;
cout << "Total Sales are : $" << showpoint << moneySales << endl;
cout << endl;
}
|