Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

Write a program that calculates and prints the bill for a cellular telephone com

ID: 3624752 • Letter: W

Question

Write a program that calculates and prints the bill for a cellular telephone company. The company offers two types of service: regular and premium. Its rates vary, depending on the type of service. The rates are computed as follows:
Regular service: $10.00 plus first 50 minutes free. Charges for over 50 minutes are $0.20 per minute.
Premium service: $25.00 plus:
a) For calls made from 6:00 am to 6:00 pm, the first 75 minutes are free; charges for over 75 minutes are $0.10 per minute.
b) 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;
Your program should prompt the user to enter an account number, a service code, and the number of minutes the service was used (type int). A service code of r or R means regular service; a service code of p or P means premium service. Treat any other character as a invalid data. Your program should output the account number, type of service, number of minutes the telephone service was used, and the amount due from the user.
For premium service, the customer may be using the service during the day and the 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 the number of minutes the service was used during the night.
Input Validation: If an invalid service is given, an error message should be displayed. This program does not accept negative numbers.

Explanation / Answer

#include <iostream>
#include<conio.h>
#include <iomanip>
using namespace std;
int account_number;
float minutes;
char service;
float amount_due;
float day_min;
float night_min;
float regular();
float premium();
int main()
{
  
   cout<< "Please enter your account number: " ;
   cin >> account_number;
   cout<< "Do you have Regular service or Premium service (r or p)? ";
    cin >> service;
// cout<< service <<endl;;
   if (service == 'r' || service == 'R')
      regular();
   else if (service == 'p' || service == 'P')
      premium();
   else
   {
      cout<< "Wrong input, program terminated!" << endl;
      getch();
      return 1;
   }
   getch();
   return 0;
  
}
float premium()
{
  
         cout<< "How many minutes were used during the day? ";
          cin >> day_min;
          cout<< "How many minutes were used during the night? ";
          cin >>night_min;
if (day_min > 75)
   {
      amount_due = ((day_min - 75) * .10)+ 25.00;
   }
   if (night_min > 100)
   {
      amount_due = ((day_min - 100) * .05)+ 25.00;
   }
       amount_due = amount_due + 25.00;  
      cout<< fixed << showpoint << setprecision(2);
      cout<< "Amount due: $" << amount_due << endl;
      cout<< "Account number: "<< account_number <<endl;
      cout<< "Service type: "<< service << endl;
      cout<< "Minutes used: "<< (day_min+night_min) <<endl;
  
  
   return 0;
}
float regular ()
{
   cout<< "How many minutes were used? ";
   cin >> minutes;
   if (minutes <= 50.00)
   {
       amount_due = 10.00;
      cout<< fixed << showpoint << setprecision(2);
      cout<< "Amount due: $" << amount_due << endl;
      cout<< "Account number: "<< account_number <<endl;
      cout<< "Service type: "<< service << endl;
      cout<< "Minutes used: "<< minutes <<endl;
     
   }
   else
   {
       amount_due = ((minutes -50.00) * 0.20);
      cout<< setw(2) << showpoint << setprecision(3)<< "Amount due: $"<< amount_due << endl;
      cout<< "Account number: "<< account_number <<endl;
      cout<< "Service type: "<< service << endl;
      cout<< "Minutes used: "<< minutes <<endl;
   }
   getch();
   return 0;
  
}

Hire Me For All Your Tutoring Needs
Integrity-first tutoring: clear explanations, guidance, and feedback.
Drop an Email at
drjack9650@gmail.com
Chat Now And Get Quote