Answered step by step
Verified Expert Solution
Question
1 Approved Answer
(C++) You MUST use do while loop to complete this exercise. Write a ptogram to simulate a simple vending machine. The program starts by asking
(C++) You MUST use do while loop to complete this exercise. Write a ptogram to simulate a simple vending machine. The program starts by asking the user to insert credit, which the user types, like this:
WARNING: You MUST use do-while loop to complete this exercise to receive points! Write a program to simulate a simple vending machine. The program starts by asking the user to insert credit, which the user types, like this Enter credit: user input here) After that, the program prints the following menu: Select option: 1 - Soda (1.00) 2 - Chips (1.00) 3 - Quit Until the user enters 3 (quit) or the balance falls below $1 and it is no longer possible to make a purchase. After one of these conditions is met, print the message Goodbye! And end the program. You can assume the initial credit will always be positive and the user will always make a valid selection (1.2 or 3)
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started