Create a program that decodes messages


Create a program that decodes messages. The messages will be encoded using a Caesar cypher, with each letter being decoded by replacing it with the previous letter in the alphabet. (Supposedly, this was invented by Julius Caesar.)
The message: J MPWF KBWB would be decoded as I LOVE JAVA.
Offer the user a menu with the following choices:
1. Decode a message.
2. Display the alphabet.
3. Exit the program.
If the user selects option 1, prompt the user to enter an encoded phrase or sentence of text. Convert it to uppercase. Decode it. Print out each decoded letter as you convert it.
If the user selects option 2, display the alphabet on the monitor screen.
If the user selects option 3, the program should terminate.
Your program should redisplay the menu after each translation is finished. 
Each task should be in its own method: load the data, display the menu, read the data/phrase entered at the keyboard, translate the encoded message, display the alphabet.
Your program must also handle the spaces between the words. 
Do not use or anticipate any punctuation in the input.
Use my examples for test data.
Encoded Message 
J mpwf Kbwb 
Uijt jt gvo 
Kbwb jt nz gbwpsjuf 
Decoded Message
I LOVE JAVA
THIS IS FUN
JAVA IS MY FAVORITE 

Request for Solution File

Ask an Expert for Answer!!
Programming Languages: Create a program that decodes messages
Reference No:- TGS0113350

Expected delivery within 24 Hours