Function task2() emulates purchasing a soda from a vending machine. A soda costs $1.00. The user can input any five Canadian coins ($2, $1, $0.25, $0.10, and $0.05). The user continues to select coins until $1.00 is reached. Any amount over $1.00 should be returned. Your function should work as follows: (1) Print welcome message and set current amount to 0. (2) Print out the current amount (see below). (3) Ask the user to input a selection between 1-5, where each selection corresponds to a Canadian coin as follows: 1-Toonie ($2); 2 – Loonie ($1); 3 – Quarter ($0.25); 4 – Dime ($0.10); 5 – Nickel ($0.05)" (5) Check the user's input to see what amount they entered. If they select a number that is not 1-5, print out "Invalid Selection." If a valid number is entered, add the corresponding amount to the current amount. (6) If the current amount is less than $1.00, go back to (2) (7) If the current amount is $1.00 or more, stop asking for input. Print out the total amount entered. (8) Print out a thank you message for purchasing a soda. (9) If the final amount is over $1.00, print "take your change $X.XX" where X.XX is the amount over $1.00. Example of task running (user input in red).

Computer Networking: A Top-Down Approach (7th Edition)
7th Edition
ISBN:9780133594140
Author:James Kurose, Keith Ross
Publisher:James Kurose, Keith Ross
Chapter1: Computer Networks And The Internet
Section: Chapter Questions
Problem R1RQ: What is the difference between a host and an end system? List several different types of end...
icon
Related questions
Question

Code must be in Python 

Function task2() emulates purchasing a soda from a vending machine. A soda costs $1.00. The user can
input any five Canadian coins ($2, $1, $0.25, $0.10, and $0.05). The user continues to select coins until $1.00
is reached. Any amount over $1.00 should be returned. Your function should work as follows:
(1) Print welcome message and set current amount to 0.
(2) Print out the current amount (see below).
(3) Ask the user to input a selection between 1-5, where each selection corresponds to a Canadian coin as
follows: 1-Toonie ($2); 2 – Loonie ($1); 3 – Quarter ($0.25); 4 – Dime ($0.10); 5 – Nickel ($0.05)"
(5) Check the user's input to see what amount they entered. If they select a number that is not 1-5, print out
"Invalid Selection." If a valid number is entered, add the corresponding amount to the current amount.
(6) If the current amount is less than $1.00, go back to (2)
(7) If the current amount is $1.00 or more, stop asking for input. Print out the total amount entered.
(8) Print out a thank you message for purchasing a soda.
(9) If the final amount is over $1.00, print "take your change $X.XX" where X.XX is the amount over $1.00.
Example of task running (user input in red).
--Task 2-
Soda Vending Machine
Current amount $0.00 out of $1.00
Print welcome and current amount.
All amounts should be shown with two
Insert Coin
decimal places.
1. Toonie ($2.00)
2. Loonie ($1.00)
3. Quarter ($0.25)
4. Dime
5. Nickel ($0.05)
Selection [1-5]? 3
Current amount $0.25 out of $1.00
Print coin selection menu as shown. Input
($0.10)
the user's selection.
Insert Coin
Add the selected amount to the current
amount. If this is still less than $1.00, keep
1. Toonie ($2.00)
2. Loonie ($1.00)
3. Quarter ($0.25)
4. Dime
5. Nickel ($0.05)
Selection [1-5]? 4
Current amount $0.35 out of $1.00
Insert Coin
1. Toonie ($2.00)
2. Loonie ($1.00)
3. Quarter ($0.25)
4. Dime
5. Nickel ($0.05)
Selection [1-5]? 1
Total amount provided: $2.35
Thank you for your purchase.
Please take your change $1.35
asking for more inputs. Each time, show
the updated amount.
($0.10)
When the current amount is $1.00 or more, stop
asking for input. Print out the total amount provided.
Print a thank you message as shown. Any amount
($0.10)
over $1.00 should be returned as change. Print a
message to the user to take their change as shown.
Transcribed Image Text:Function task2() emulates purchasing a soda from a vending machine. A soda costs $1.00. The user can input any five Canadian coins ($2, $1, $0.25, $0.10, and $0.05). The user continues to select coins until $1.00 is reached. Any amount over $1.00 should be returned. Your function should work as follows: (1) Print welcome message and set current amount to 0. (2) Print out the current amount (see below). (3) Ask the user to input a selection between 1-5, where each selection corresponds to a Canadian coin as follows: 1-Toonie ($2); 2 – Loonie ($1); 3 – Quarter ($0.25); 4 – Dime ($0.10); 5 – Nickel ($0.05)" (5) Check the user's input to see what amount they entered. If they select a number that is not 1-5, print out "Invalid Selection." If a valid number is entered, add the corresponding amount to the current amount. (6) If the current amount is less than $1.00, go back to (2) (7) If the current amount is $1.00 or more, stop asking for input. Print out the total amount entered. (8) Print out a thank you message for purchasing a soda. (9) If the final amount is over $1.00, print "take your change $X.XX" where X.XX is the amount over $1.00. Example of task running (user input in red). --Task 2- Soda Vending Machine Current amount $0.00 out of $1.00 Print welcome and current amount. All amounts should be shown with two Insert Coin decimal places. 1. Toonie ($2.00) 2. Loonie ($1.00) 3. Quarter ($0.25) 4. Dime 5. Nickel ($0.05) Selection [1-5]? 3 Current amount $0.25 out of $1.00 Print coin selection menu as shown. Input ($0.10) the user's selection. Insert Coin Add the selected amount to the current amount. If this is still less than $1.00, keep 1. Toonie ($2.00) 2. Loonie ($1.00) 3. Quarter ($0.25) 4. Dime 5. Nickel ($0.05) Selection [1-5]? 4 Current amount $0.35 out of $1.00 Insert Coin 1. Toonie ($2.00) 2. Loonie ($1.00) 3. Quarter ($0.25) 4. Dime 5. Nickel ($0.05) Selection [1-5]? 1 Total amount provided: $2.35 Thank you for your purchase. Please take your change $1.35 asking for more inputs. Each time, show the updated amount. ($0.10) When the current amount is $1.00 or more, stop asking for input. Print out the total amount provided. Print a thank you message as shown. Any amount ($0.10) over $1.00 should be returned as change. Print a message to the user to take their change as shown.
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps with 1 images

Blurred answer
Recommended textbooks for you
Computer Networking: A Top-Down Approach (7th Edi…
Computer Networking: A Top-Down Approach (7th Edi…
Computer Engineering
ISBN:
9780133594140
Author:
James Kurose, Keith Ross
Publisher:
PEARSON
Computer Organization and Design MIPS Edition, Fi…
Computer Organization and Design MIPS Edition, Fi…
Computer Engineering
ISBN:
9780124077263
Author:
David A. Patterson, John L. Hennessy
Publisher:
Elsevier Science
Network+ Guide to Networks (MindTap Course List)
Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:
9781337569330
Author:
Jill West, Tamara Dean, Jean Andrews
Publisher:
Cengage Learning
Concepts of Database Management
Concepts of Database Management
Computer Engineering
ISBN:
9781337093422
Author:
Joy L. Starks, Philip J. Pratt, Mary Z. Last
Publisher:
Cengage Learning
Prelude to Programming
Prelude to Programming
Computer Engineering
ISBN:
9780133750423
Author:
VENIT, Stewart
Publisher:
Pearson Education
Sc Business Data Communications and Networking, T…
Sc Business Data Communications and Networking, T…
Computer Engineering
ISBN:
9781119368830
Author:
FITZGERALD
Publisher:
WILEY