Question: [JAVA PROGRAMMING LANGUAGE] Write a program that calculates and displays a customers monthly mobile bill in the main method of class Answer . The mobile

[JAVA PROGRAMMING LANGUAGE]

Write a program that calculates and displays a customers monthly mobile bill in the main method of class Answer.

The mobile phone service provider has three different subscription packages for the customers:

  • Package A: For $39.99 per month, 450 minutes are provided. Additional minutes are $0.45 per minute.
  • Package B: For $59.99 per month, 900 minutes are provided. Additional minutes are $0.40 per minute.
  • Package C: For $69.99 per month, unlimited minutes are provided.

The program should first ask the user to enter the package of the customer showing the message "Enter customer's package:".

Once the user enters the package, the program should ask the user to enter the number of minutes only if the package is either A or B (You should not be asking the user for the number of minutes talked if the plan is C), showing the message "Enter minutes talked:".

Once the inputs are complete, the program should display the bill total for the month in the format, "Bill total: $ddd.dd" (note that there should be only two decimal points in the display message).

Note 1: After each output to the console, there should be a newline character.

Note 2: You can assume input is always entered correctly.

(You should not be asking the user for the number of minutes talked if the plan is C)

answer:

public class Answer{

public static void main(String[] arg) { //TODO: Write your code here. } }

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!