Design and implement a java application that creates


Design and implement a Java application that creates and prints a random phone number of the form xxx-xxx-xxxx. Include the dashes in the output. The first 3 digits (the area code) must be in the range 201 to 989, inclusive (but don't be more restrictive than that), and the fourth digit should be in the range 2 to 9 inclusive. The remaining six digits are in the range 0 to 9, inclusive. Hint: Think about the easiest way to construct the phone number. Each digit does not have to be determined separately. Have your application display ten randomly generated phone numbers.

I would suggest creating a PhoneNumber class that contains a generatePhoneNumber method that generates a phone number using the above criteria and returns this value as a String. Then create a PhoneNumberUser class that instantiates a PhoneNumber object and uses the generatePhoneNumber
method to generate the user specified number of phone numbers. The program output should look like the following:

How many phone numbers would you like to generate: 5

691-853-9156
267-733-1928
328-690-1275
769-406-2805
535-838-6992 

Request for Solution File

Ask an Expert for Answer!!
Programming Languages: Design and implement a java application that creates
Reference No:- TGS0145977

Expected delivery within 24 Hours