Question
Write a Java program with String class that will sort first, middle and last names of the user. The program will ask user to enter
Write a Java program with String class that will sort first, middle and last names of the user. The program will ask user to enter the first, middle and the last names. It will also ask the sorting order e.g. you will enter 1 for ascending order and 2 for descending order. The program should display the three names arranged in the specified sort order of their lengths.
For example, if you enter name as:
First name: Pradeep
Middle name: K.
Last name: Atrey
Sort order: 1
As you can see the length of (or number of characters in) the first name is 7, middle name is 2 and last name is 5; and if you choose to 1 for ascending order, the output would be:
K. Atrey Pradeep
i.e. first, display the name with the least number of characters, and so on.
For documentation, I dont expect you to add comment in each line, but you must explain the code appropriately.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started