(Solved) : 143 Prog 3 Text Message Decoder Selection 1 Use Scnrnextline Get Line User Input String Ou Q44122165 . . .
Java, please write the program input too

![1 import java.util.Scanner; 2 3 public class TextMsgDecoder { public static void main(String[] args) { /* Type your code here](https://media.cheggcdn.com/media/d0b/d0b640f3-8376-4bf7-b29e-3b08cf10455a/phpKLQixc.png)
14.3 Prog 3-Text message decoder (selection) (1) Use scnr.nextLine() to get a line of user input into a string. Output the line. (4 pts) Ex: Enter text: IDK if I’l1 go. It’s my BFF’s birthday. You entered: IDK if I’ll go. It’s my BFF’s birthday. (2) Search the string (using indexOf()) for common abbreviations and print a list of each found abbreviation along with its decoded meaning. (6 pts) Ex: Enter text: IDK if I’ll go. It’s my BFF’s birthday. You entered: IDK if I’ll go. It.’s my BFF’s birthday. BFF: best friend forever IDK: I don’t know Support these abbreviations: • BFF — best friend forever • IDK — I don’t know JK — just kidding • TMI — too much information • TTYL — talk to you later 1 import java.util.Scanner; 2 3 public class TextMsgDecoder { public static void main(String[] args) { /* Type your code here. */ 4 return; Run your program as c Submit mode Develop mode input values in the first second box. Enter program input: If your code requires input values, provide them here. Show transcribed image text 14.3 Prog 3-Text message decoder (selection) (1) Use scnr.nextLine() to get a line of user input into a string. Output the line. (4 pts) Ex: Enter text: IDK if I’l1 go. It’s my BFF’s birthday. You entered: IDK if I’ll go. It’s my BFF’s birthday. (2) Search the string (using indexOf()) for common abbreviations and print a list of each found abbreviation along with its decoded meaning. (6 pts) Ex: Enter text: IDK if I’ll go. It’s my BFF’s birthday. You entered: IDK if I’ll go. It.’s my BFF’s birthday. BFF: best friend forever IDK: I don’t know Support these abbreviations: • BFF — best friend forever • IDK — I don’t know JK — just kidding • TMI — too much information • TTYL — talk to you later
1 import java.util.Scanner; 2 3 public class TextMsgDecoder { public static void main(String[] args) { /* Type your code here. */ 4 return; Run your program as c Submit mode Develop mode input values in the first second box. Enter program input: If your code requires input values, provide them here.
Expert Answer
Answer to 14.3 Prog 3-Text message decoder (selection) (1) Use scnr.nextLine() to get a line of user input into a string. Output t…
OR