Cashier 1.0 is a C++ program that displays on the screen item codes with corresponding item description and price (at least 10 items). It asks the user to enter the code of the item purchased by a customer. Then, its description and price are displayed on the screen too. Also, it asks for the quantity of the particular item code entered. Consequently, it displays the total amount due. Then, it asks the user to tender the amount of cash of the customer. Finally, it displays the change and its breakdown.
Constraints:
When any one of the scenarios happens, the program should exit.
• The user enters item codes that are not available.
• The user types in quantity less than or equal to 0.
• The user inputs amount of cash less than the amount due.
Grading Criteria:
Program Correctness 80%
Ease of Use 20%
Sample Run:
Welcome to CS131xxx Mart!
Item Codes Description Price
100 Sweet ‘n Ripe Grapes 302.90
101 Crunchy Apples 52.20
… … …
109 Green Peas 25.75
Enter Code: 100
Sweet ‘n Ripe Grapes 302.90 Qty: 1
Total Due: 302.90
Cash: 1000.00
Change: 697.10
=========== CHANGE BREAKDOWN ===========
1000 0 0
500 1 500.00
200 0 0
100 1 100.00
50 1 50.00
20 2 40.00
10 0 0
5 1 5.00
1 2 2.00
0.25 0 0
0.10 1 0.10
0.05 0 0
“ Thanks for shopping!”
its in c++ . . . the breakdown is the hardest part so i was tryin to make a program of it for my hw . . . but its kinda hard . . . ok for example . . . the change that the cashier is gon to give to the customer is lets say $1250 . . . in the breakdown it will say how many 1000 , 500, 200, 100, 50, 20, 10, 5, 1, 0.25, 0.10, 0.05 are there in the change . . .
so far this is wot i have finished and im not sure if my codes are correct . . .
#include<iostream>
#include<cmath>
using namespace std;
void main()
{
int code, qty, cash;
double tDue, change;
cout<<"Welcome to CS131xxx Mart!"<<endl<<endl;
cout<<"Item Codes Description Price"<<endl<<endl;
cout<<"100 Sweet 'n Ripe Grapes 302.90"<<endl;
cout<<"101 Crunchy Apples 52.20"<<endl;
cout<<"102 Green Peas 25.75"<<endl;
cout<<"103 Oranges 60.75"<<endl;
cout<<"104 Melons 135.40"<<endl;
cout<<"105 Ripe Mangos 90.50"<<endl<<endl;
cout<<"Enter Code: ";
cin>>code;
switch (code)
{
case 100: cout<<"Sweet 'n Ripe Grapes 302.90";
cout<<" Qty: ";
cin>>qty;
{
if (qty<0)
cout<<"Invalid Quantity Number"<<endl;
else
tDue=302.90*qty;
cout<<"Total Due: "<<tDue<<endl;
}
cout<<"Cash: ";
cin>>cash;
change=cash-tDue;
{
if (cash<0 || cash<tDue)
cout<<"Invalid Cash"<<endl;
else
cout<<"Change: "<<change<<endl<<endl;
}
break;
case 101: cout<<"Crunchy Apples 52.20";
cout<<" Qty: ";
cin>>qty;
{
if (qty<0)
cout<<"Invalid Quantity Number"<<endl;
else
tDue=52.20*qty;
cout<<"Total Due: "<<tDue<<endl;
}
cout<<"Cash: ";
cin>>cash;
change=cash-tDue;
{
if (cash<0 || cash<tDue)
cout<<"Invalid Cash"<<endl;
else
cout<<"Change: "<<change<<endl<<endl;
}
break;
case 102: cout<<"Green Peas 25.75";
cout<<" Qty: ";
cin>>qty;
{
if (qty<0)
cout<<"Invalid Quantity Number"<<endl;
else
tDue=25.75*qty;
cout<<"Total Due: "<<tDue<<endl;
}
cout<<"Cash: ";
cin>>cash;
change=cash-tDue;
{
if (cash<0 || cash<tDue)
cout<<"Invalid Cash"<<endl;
else
cout<<"Change: "<<change<<endl<<endl;
}
break;
case 103: cout<<"Oranges 60.75";
cout<<" Qty: ";
cin>>qty;
{
if (qty<0)
cout<<"Invalid Quantity Number"<<endl;
else
tDue=60.75*qty;
cout<<"Total Due: "<<tDue<<endl;
}
cout<<"Cash: ";
cin>>cash;
change=cash-tDue;
{
if (cash<0 || cash<tDue)
cout<<"Invalid Cash"<<endl;
else
cout<<"Change: "<<change<<endl<<endl;
}
break;
case 104: cout<<"Melons 135.40";
cout<<" Qty: ";
cin>>qty;
{
if (qty<0)
cout<<"Invalid Quantity Number"<<endl;
else
tDue=135.40*qty;
cout<<"Total Due: "<<tDue<<endl;
}
cout<<"Cash: ";
cin>>cash;
change=cash-tDue;
{
if (cash<0 || cash<tDue)
cout<<"Invalid Cash"<<endl;
else
cout<<"Change: "<<change<<endl<<endl;
}
break;
case 105: cout<<"Ripe Mangos 90.50";
cout<<" Qty: ";
cin>>qty;
{
if (qty<0)
cout<<"Invalid Quantity Number"<<endl;
else
tDue=90.50*qty;
cout<<"Total Due: "<<tDue<<endl;
}
cout<<"Cash: ";
cin>>cash;
change=cash-tDue;
{
if (cash<0 || cash<tDue)
cout<<"Invalid Cash"<<endl;
else
cout<<"Change: "<<change<<endl<<endl;
}
break;
default: cout<<"Invalid Item Code"<<endl<<endl;
}
cout<<"=============== CHANGE BREAKDOWN ==============="<<endl;