Write a program that informs a user of their meal charge. Create a variable and assign it a value for the meal charge (e.g. $32.95). The program should then compute the tax and tip on the restaurant bill. The tax should be 6.75 percent of the meal cost. The tip should be 20 percent of the total after adding the tax. Display the meal cost, tax amount, tip amount, and total bill on the screen.
Max Function
Statistical function is of many categories. One of them is a MAX function. The MAX function returns the largest value from the list of arguments passed to it. MAX function always ignores the empty cells when performing the calculation.
Power Function
A power function is a type of single-term function. Its definition states that it is a variable containing a base value raised to a constant value acting as an exponent. This variable may also have a coefficient. For instance, the area of a circle can be given as:
Write a
Display the meal cost, tax amount, tip amount, and total bill on the screen.
1) Since you have not specified programming language, I have written program in python
2) Below is Program that informs a user of their meal charge
- It create a variable and assign it a value for the meal charge
- It compute the tax at 6.75 percent of meal cost
- Then it calculates total meal cost including tax
- Calculate tip, should be 20 percent of the total after adding the tax
- Display the meal cost, tax amount, tip amount, and total bill on the screen.
3) Save Program in python file and run
Step by step
Solved in 3 steps with 1 images