Write a program that calculates and prints the bill ?

Write a program that calculates and prints the bill for Viti Telephone Company. The company offers two types of services: regular and premium: its rate very depending on the type of service.

The rates are computed as follows:
Regular Service
$10.00 plus first 50 minutes are free.
Charges for over 50 minutes are $0.20 per minute
Premium Service
$25.00 plus
Calls made from 6.00 AM to 6.00 PM, the first 75 minutes are free charges over 75 minutes are $0.10 per minute.
For Calls made from 6.00 PM to 6.00 AM, the first 100 minutes are free; charges for over 100 minutes are $0.05 per minute.
program should prompt user to enter an account number, a service code (type char), and the number of minutes service was used. A service code of r or R means regular service; a service code p or P means premium service. Treat any other character as an error. Your program should output the account number, type of service number of minutes the telephone was used and the amount due from the user.
For the premium service, the customer may be using the service both during the day and at night. Therefore to calculate the bill, you must ask the user to input the number of minutes the service was used during the day and for the number of minutes the service was used at night

 

This Question is not yet answered!

 
 

Related Answered Questions

 

Related Open Questions