Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

**Need in ZyBooks Zylab format** (PYTHON WITH CORRECT SPACING FOR ZYLABS) 4.11 LAB 4B: Automobile service cost Overview To create a program that calculates the

**Need in ZyBooks Zylab format** (PYTHON WITH CORRECT SPACING FOR ZYLABS)

4.11 LAB 4B: Automobile service cost

Overview

To create a program that calculates the cost and change for services using if-statements.

Objectives

To gain proficiency with the following:

  • Nested if-statements
  • Multi-branch if-statements
  • Incremental development

Description

For this program, you should prompt the user for an automobile service and a payment amount and then calculate how much change the user should receive, according to this list of services:

  • oil change -- $ 35
  • tire rotation -- $ 19
  • car wash -- $ 7

If the user selects a service not shown in the list, you should display an appropriate message. Also, if the payment is not enough to cover the service an appropriate error message should be displayed.

To complete this program, consider the following incremental process.

(1) Prompt the user for an automobile service. After that, prompt the user for the payment amount. Don't forget to add a newline after each prompt. Then output the user's input as follows: Ex:

Enter desired auto service: oil change You entered: oil change How much are you paying? 41 You have paid: $ 41 

(2) Next, output the price of the requested service and the change amount as follows: Ex:

Enter desired auto service: oil change You entered: oil change How much are you paying? 41 You have paid: $ 41 Cost of oil change: $ 35 You are getting $ 6 change back from your $ 41 . 

(3) Implement the error messages:

If the user enters a service that is not listed above, then output the following error message:

Error: Requested service is not recognized 

If the user enters a payment less than the service cost, then output an error message like this:

Error: Your paid amount is not sufficient for the oil change service 

Don't forget to output the corresponding service name (oil change/tire rotation/car wash) as well.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image_2

Step: 3

blur-text-image_3

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Concepts

Authors: David Kroenke, David Auer, Scott Vandenberg, Robert Yoder

9th Edition

0135188148, 978-0135188149, 9781642087611

More Books

Students also viewed these Databases questions

Question

Derive expressions for the rates of forward and reverse reactions?

Answered: 1 week ago

Question

Write an expression for half-life and explain it with a diagram.

Answered: 1 week ago

Question

What do you mean by underwriting of shares ?

Answered: 1 week ago

Question

Define "Rights Issue".

Answered: 1 week ago