Question: In C++ Programming Language Write a program that will calculate the cost of a phone call as follows: -The first 10 minutes are charged at

In C++ Programming Language

Write a program that will calculate the cost of a phone call as follows:

-The first 10 minutes are charged at a flat rate of $0.99 for the entire 10 minutes (Not 99 cents a minute - but 99 cents for the first 10 minutes total).

-Every minute after the initial 10 minutes will be charged at $0.10 per minute.

-Input the number of minutes talked as an integer.

-Using an IF/ELSE structure, check for an entry of 0 minutes first, and inform the User that no minutes were entered. -IF 0 minutes are entered THEN

-output an error message stating that no minutes were entered.

-ELSE

Calculate and display the results.

The final display will show the minutes and the final cost.

The price will be formatted with 2 decimal places.

-END IF

- Add the code necessary to allow the display window to stay open until you press a key from the keyboard:

system ("pause");

Include all Prologue information with your program

Include Input, Output, and Formulas (if there are any)

Test your program thoroughly with the following data:

1. 9 minutes 2. 10 minutes 3. 11 minutes 4. 35 minutes

DO NOT use the "return 0" code, end, break, or exit to force an exit from within your IF/ELSE structure.

Let the program progress to the end of the main function.

The end of the main function is the only place that the return 0 should be placed.

A switch statement is the only place that the break command should be placed.

Declare all variables within the data declaration section.

DO NOT get input on the same line as a variable declaration.

DO NOT place an equation for computation on the same line as declaring a variable.

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!