137k views
3 votes
Hi, Can you help me to solve this problem? in C++

LAB 7 - PART2 REQUIREMENT
Provide the pseudo-code and a C++ application to allow a Coffee Shop to do the following tasks. After finishing one task, redisplay the menu to allow users to select other tasks until users select EXIT to terminate the program.

FA2023_RLCSaleCoffee_Smith.cpp

SALE COFFEE – JAMES SMITH

Today 11/06/23

----------------------------------------------------------------------

1.Sale coffee

2.Report total number of cups sold in the day

3.Report total amount of coffee in OZ sold in the day

4.Report total money sold in the day

0.EXIT

You must have 4 user-defined functions to perform 4 tasks and apply reference parameters in at least one user-defined function

TASK 1: SALE COFFEE
When select 1, display the list of cup sizes and the price as below; then ask users to select a size and enter the number of cups.

FA2023_RLCSaleCoffee_Smith.cpp

SELECT CUP SIZE – JAMES SMITH

Today 11/06/23

---------------------------------------

1.Small ( 8oz) - $1.59

2.Medium (12oz) - $2.29

3.Large (16oz) - $3.79

0.DONE

-Display message and read number of cups on each selected cup size, then redisplay the menu of SELECT CUP SIZE to allow users to select other sizes until users select DONE

-Display the receipt with all requested cups of coffee in the following format:

Output as below:

FA2023_RLCSaleCoffee_Smith.cpp

SALE RECEIPT – JAMES SMITH

Today 11/06/23

-------------------------------------------

SIZE NUMBER MONEY

SMALL ($1.59) 2 3.18

MEDIUM ($2.29) 1 2.29

LARGE ($3.79) 1 3.79

-------------------------------------------

Subtotal: 9.26

Tax (8.25%): 0.76

Total: 10.02

TASK 2: Report total number of cups sold in the day
Display the total number of cups sold during the day in the different sizes in the following format:

Output as below:

FA2023_RLCSaleCoffee_Smith.cpp

REPORT NUMBER OF CUPS – JAMES SMITH

Today 11/06/23

------------------------------------------

SMALL SIZE ( 8oz) 348 cups

MEDIUM SIZE (12oz) 224 cups

LARGE SIZE (16oz) 325 cups

TASK 3: Report total amount of coffee in OZ sold in the day
Calculate and Display the total coffee in oz sold during the day in different size in the following format:

Output as below:

FA2023_RLCSaleCoffee_Smith.cpp

REPORT COFFEE SOLD IN OZ DURING THE DAY – JAMES SMITH

Today 11/06/23

-----------------------------------------------------

SIZE NUMBER OF CUP COFFEE AMOUNT

SMALL ( 8oz): 348 2784

MEDIUM (12oz): 334 4008

LARGE (16oz): 325 5200

-----------------------------------------------------

TOTAL: 11992

TASK 4: Report total money sold in the day:
Calculate and Display the total money sold during the day in the following format:

Output as below:

FA2023_RLCSaleCoffee_Smith.cpp

REPORT MONEY SOLD DURING THE DAY – JAMES SMITH

Today 11/06/23

-----------------------------------------------------------

SIZE UNIT PRICE NUMBER CUP AMOUNT MONEY

SMALL 1.59 348 553.32

MEDIUM 2.29 334 764.86

LARGE 3.79 325 1231.75

-----------------------------------------------------------

SUM: 2549.93

TAX: 210.37

TOTAL: 2760.30

User Oskar Hane
by
7.9k points

1 Answer

1 vote

Final answer:

In summary, pseudo-code and corresponding C++ functions are required to manage sales and reports for a Coffee Shop application, including managing sales,

Step-by-step explanation:

To solve the problem for the Coffee Shop program in C++, we can start by defining pseudo-code and then implement the corresponding C++ functions. Each of the tasks outlined will be handled by a separate user-defined function. For instance, the sale coffee function will prompt the user to select a cup size and enter the quantity, then print a receipt including price calculations.

Another function will report the total number of cups sold in a day, broken down by cup size. A similar approach will be used to report the total amount of coffee in ounces sold and the total money earned, incorporating tax calculations. At least one function will make use of reference parameters to update values like the total cups or total earnings throughout the day.

Example Pseudo-code for the Sale Coffee Task:

  1. Display menu with cup sizes and prices.
  2. Ask user to select size and input number of cups.
  3. Compute subtotal, tax, and total cost.
  4. Display receipt with details.
  5. Loop until the user selects 'DONE'.

Example C++ Function for the Sale Coffee Task:

void saleCoffee(int& totalSmallCups, int& totalMediumCups, int& totalLargeCups, double& totalRevenue) {
// Implement details based on the pseudo-code.
// Use reference parameters to update the total counts and revenue.
}

User MattP
by
7.1k points