Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

CIS 1 1 5 ch 0 2 _ labe 2 Complete the program below, using onlineGDB, to calculate the total cost of a meal including

CIS115 ch02_labe2
Complete the program below, using onlineGDB, to calculate the total cost of a meal including sales tax and a tip. The program will prompt the user to input:
the cost of the meal,
the tip percent
then perform the calculations and print the results.
Sales tax rate is 9.5%, do not calculate a tip on sales tax amount.
Sample output below:
please input the amount of the meal 85.22
enter tip percent as shown >12.5, your number can be different
please input the tip percent for the meal 12.5
Meal cost is 85.22
Tax amount is 8.10
Tip amount is 10.65
Total meal cost is 103.97
=================== Copy program below this line
# student name 20245P cho2_lab02
this program will accept input of a meal cost and then:
calculate the sales amount
calculate the tip amount
print the results to include: meal amount, tp amount, tax amount, total cost
TAX_RATE=???
mealAmt=float (input ('please input the amount of the meal '))
#======================== calculations
taxAmt = mealAmt * TAX_RATE
print (f'meal cost is {mealAmt: .2f)
print (f' tax amount is (taxAmt: .2f }')
print (f'tip amount is (tipAmt: .2f)
image text in transcribed

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

Step: 3

blur-text-image

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 Processing

Authors: David Kroenke

11th Edition

0132302675, 9780132302678

More Books

Students also viewed these Databases questions

Question

What do Dimensions represent in OLAP Cubes?

Answered: 1 week ago