Create a New Java Project called YourLastNameMorseCode . Morse code is a code wh
ID: 3588454 • Letter: C
Question
Create a New Java Project called YourLastNameMorseCode.
Morse code is a code where each letter of the English alphabet, each digit, and various punctuation characters are represented by a series of dots and dashes. Table 9-14 on page 612 of your textbook provides details on conversion from character to code. Write a program that asks the user to enter a string, and then converts that string to Morse code. Use hyphens for dashes and periods for dots.
Input Validation: Do not accept unreasonable/junk values, or negative values, which must be rejected and asked for another one.
Please include program comments so I can follow through.