
Fruit Juice Machine
Using Development C++
In this programming example, there are one function available which is main() class and
stored in fruit.cpp.
The program should do the following;
1. Show the customer the different product sold by the juice machine.
2. Let the customer make the selection.
3. Show the customer the item selected.
4. Accept money from customer.
5. Release the item.
Input – the selected item, quantity
Output – the selected item and customer receipt.
Question
Execute the files by using Dev C++. Understand the flow of the program. Next, manipulate or
add appropriate functions in the existing files to:
1. Add coffee in the machine which has several types (minimum of 4 types). Allocates the
price and types for the customer. (Now, user can choose screen to buy juice or coffee.
With each have different menu).
2. Show the customer the cost for each.
3. Let the customer choose more than one drink (iterate till the customer request to end
choosing the drink).
4. Prompt user to enter more money as long as the user has not entered enough money to
buy the drinks.
5. Produce receipt to the customer which shows the drinks they choose, the cost, and
balance of their money in receipt.txt
You are required to add selection, looping, text file, function and array in one full
program (extra mark will be given if you add any extra that not cover in the syllabus).
The following result look like this in the picture


Trending nowThis is a popular solution!
Step by stepSolved in 3 steps with 4 images

- Python without Def function Problem Statement Define and implement a function time_delta that takes two string parameters (time1 and time2) and returns the difference between them (as a string). You may assume that the second time will always be after the first time, both times will always be on the same date, and military time will be used (no a.m. or p.m.). Examples time_delta(04:15:36, 16:35:27) ➞ (12:19:51) time_delta(02:06:05, 06:09:10) ➞ (04:03:05) Sample Input 1 "04:15:36" "16:35:27" Sample Output 1 "12:19:51"arrow_forwardComplete function PrintPopcornTime(), with int parameter bagOunces, and void return type. If bagOunces is less than 3, print "Too small". If greater than 10, print "Too large". Otherwise, compute and print 6* bagOunces followed by seconds". End with a newline. Example output for ounces = 7: 42 seconds 1 #include NM & in 107 2 3 void PrintPopcornTime (int bagOunces) { 4 requiriturgy 5 /* Your solution goes here */ 6 7} 8 9 int main(void) { 10 int userOunces; 11 12 scanf("%d", &userOunces); 13 14 15 16} PrintPopcornTime (userOunces); return 0;arrow_forwardC++arrow_forward
- Local variables are known only to the function in which they are declared. Local variables are invisible outside the function in which they are declared. Whether True or False 11. It is possible for any function to return numerous values. Any function type may return multiple values. That's true, right?arrow_forwardDefine a struct fruitType to store the following data about a fruit: Fruit name (string), color (string), fat (int), sugar (int), and carbohydrate (int). Declare a variable of type fruitType to store the following data: Fruit name—banana, color—yellow, fat—1, sugar—15, carbohydrate—22. Write a C++ function, getFruitInput to get and store data into a variable of fruitType. Write a C++ function, printFruitInfo to output data stored into a variable of fruitType. Use appropriate labels to identify each component. Test your solution by calling all funtions.arrow_forward
- Database System ConceptsComputer ScienceISBN:9780078022159Author:Abraham Silberschatz Professor, Henry F. Korth, S. SudarshanPublisher:McGraw-Hill EducationStarting Out with Python (4th Edition)Computer ScienceISBN:9780134444321Author:Tony GaddisPublisher:PEARSONDigital Fundamentals (11th Edition)Computer ScienceISBN:9780132737968Author:Thomas L. FloydPublisher:PEARSON
- C How to Program (8th Edition)Computer ScienceISBN:9780133976892Author:Paul J. Deitel, Harvey DeitelPublisher:PEARSONDatabase Systems: Design, Implementation, & Manag...Computer ScienceISBN:9781337627900Author:Carlos Coronel, Steven MorrisPublisher:Cengage LearningProgrammable Logic ControllersComputer ScienceISBN:9780073373843Author:Frank D. PetruzellaPublisher:McGraw-Hill Education





