Question
Write a program that computes the cost of a long distance call. The cost of the call is determined according to the following rate schedules.
a.A call made between 8:00 AM and 6:00 PM is billed at a rate of 6 rupees per minute.
b.A call made before 8:00 AM or after 6:00 PM is charged at a rate of 3.75 rupees.
The input to the program will consist of the time the call started, and the length of call in minutes. The output will be the cost of call. The time is to be input in 24-hours notation, so the time 1:30 PM is input as 13:30. The time will be input using two variables of type int, one used for hour and other used for minutes. The number of the minutes for length of the call will also be input as a value of type int.
a.A call made between 8:00 AM and 6:00 PM is billed at a rate of 6 rupees per minute.
b.A call made before 8:00 AM or after 6:00 PM is charged at a rate of 3.75 rupees.
The input to the program will consist of the time the call started, and the length of call in minutes. The output will be the cost of call. The time is to be input in 24-hours notation, so the time 1:30 PM is input as 13:30. The time will be input using two variables of type int, one used for hour and other used for minutes. The number of the minutes for length of the call will also be input as a value of type int.
Answers
No one will write this program for you. You need to write it yourself and post it here for critique.
Related Questions
The cost of a long-distance telephone call is $.36 for the first minute and $.21 for each additional...
The phone company charges a flat rate of $2.50 plus and additional $0.50 each minute for a long-dist...
Using a phone card to make a long distance call costs a flat fee of $0.80 plus $0.33 per minute star...
Design a program that prompts the user for a number
of miles driven and a current cost per gallon....