ate a java program that calculates a customer’s bill for a local cable company. There are two types of customers: residential and business. There are two rates for calculating a cable bill: one for residential customers and one for business customers. For residential customers, the following rates apply: • Bill-processing fee: Php4.50 • Basic service fee: Php20.50 • Premium channels: Php7.50 per channel For business customers, the following rates apply: • Bill-processing fee: Php15.00 • Basic service fee: Php75.00 for the first 10 connections; Php5.00 for each additional connection • Premium channels: Php50.00 per channel for any number of connections The program should ask the user for an account number (an integer) and a customer code. Assume that R or r stands for a residential customer, and B or b stands for a business customer. Input: Input to the program is the customer’s account number, customer cod
Create a java program that calculates a customer’s bill for a local cable company. There are two types
of customers: residential and business.
There are two rates for calculating a cable bill: one for residential customers and one for
business customers.
For residential customers, the following rates apply:
• Bill-processing fee: Php4.50
• Basic service fee: Php20.50
• Premium channels: Php7.50 per channel
For business customers, the following rates apply:
• Bill-processing fee: Php15.00
• Basic service fee: Php75.00 for the first 10 connections; Php5.00 for each additional
connection
• Premium channels: Php50.00 per channel for any number of connections
The program should ask the user for an account number (an integer) and a customer code.
Assume that R or r stands for a residential customer, and B or b stands for a business customer.
Input: Input to the program is the customer’s account number, customer code, number of premium channels to which the customer subscribes and, in the case of business customers, the
number of basic service connections.
Output: Customer’s account number and the billing amount.
Trending now
This is a popular solution!
Step by step
Solved in 3 steps with 2 images