Write program to the following specifications. Compress files in a zip folder and submit to the Dropbox.
Create Scanner variable for console input.
Create String variables for first, middle and last names.
Prompt the user for each name and input it into the String variable for that name.
No matter how the user capitalizes the names, output the name with the first name in all lowercase except for an uppercase first letter, the first character of the middle name in uppercase, followed by a period, and the last name in all lowercase except for an uppercase first letter.
Example run
What is your first name? george
What is your middle name? xavier
What is your last name? SMITH
Your name is George X. Smith