Question: Use Notepad, Eclipse or some other IDE to write a Java program as follows: DO NOT USE the Java* Tester to test or to submit

Use Notepad, Eclipse or some other IDE to write a Java program as follows: DO NOT USE the Java* Tester to test or to submit your assignment - Enter numerous words as command line arguments Example: java sortpgm apples oranges pears bananas strawberries apricots - Check to make sure that the client entered at least 3 or more words, if not, print message and exit - Print all entered words each on a separate line - Concatenate all those words into a single string with only a space between the words - Print the string - Create a sort method to sort the words array in ascending order. Try coming up with your own sort algorithm. Document your code by adding a comment to each line of the sort algorithm code. If unsuccessful, your method can simply use Arrays.sort( ) ... (but you will only get 70% of the full credit) - Take each word from the sorted array, copy it to a StringBuffer, and print that StringBuffer on a separate line - Concatenate all those StringBuffer words into a single StringBuffer with a space between the words - Print the StringBuffer
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
