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:
INTRODUCTION: In this assignment, you will demonstrate how to write simple programs that get input from the user, produce output, and perform simple calculations.
HOW TO SUBMIT YOUR ASSIGNMENT
At the top of each of your C++ programs, you should have at least four lines of documentation:
Program name (the C++ file name(s)), Author (your name), Date last updated, and Purpose (a brief description of what the program accomplishes). Here is an example:
/* Program name: jbtictactoe.cpp
* Author: John Doe
* Date last updated: 5/1/2017
* Purpose: Play the game of Tic-Tac-Toe
*/
ASSIGNMENT: Restaurant Bill
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.
To submit your assignment:
- Submit your source code file (*.cpp)
- Submit screen shots demonstrating your program works correctly. You may embed your screenshot in a document or submit it directly to this assignment.
Trending now
This is a popular solution!
Step by step
Solved in 3 steps with 1 images