The world’s Largest Sharp Brain Virtual Experts Marketplace Just a click Away
Levels Tought:
Elementary,Middle School,High School,College,University,PHD
| Teaching Since: | Jul 2017 |
| Last Sign in: | 304 Weeks Ago, 5 Days Ago |
| Questions Answered: | 15833 |
| Tutorials Posted: | 15827 |
MBA,PHD, Juris Doctor
Strayer,Devery,Harvard University
Mar-1995 - Mar-2002
Manager Planning
WalMart
Mar-2001 - Feb-2009
this code does not work for some reason I have tried many variations
Â
3.14 Warm up: Text message abbreviation decoder (Java)
(1) If a user's input string matches a known text message abbreviation, output the unabbreviated form, else output: Unknown. Support two abbreviations: LOL -- laughing out loud, and IDK -- I don't know. (3 pts)Â
Sample input/output:
Input an abbreviation: LOL
laughing out loud
Â
(2) Expand to also decode these abbreviations. (4 pts)
·        BFF -- best friends forever
·        IMHO -- in my humble opinion
·        TMI -- too much information
import java.util.Scanner;
public class TextMsgAbbreviation {
  public static void main(String[] args) {
     Scanner scnr = new Scanner(System.in);
     System.out.println("Input an abbreviation: ");
     String user_input;
     user_input = scnr.nextLine();
     if (user_input.contains("LOL")) {
        System.out.println("laughing out loud");
     }
     else if (user_input.contains("BFF")) {
        System.out.println("best friends forever");
     }
     else if (user_input.contains("IMHO")) {
        System.out.println("in my humble opinion");
     }
     else if (user_input.contains("TMI")) {
        System.out.println("too much information");
     }
     else if (user_input.contains("IDK")) {
        System.out.println("I don't know");
     }
     else {
        System.out.println("Unknown");
     }
     return;
  }
Â
----------- Â ----------- H-----------ell-----------o S-----------ir/-----------Mad-----------am ----------- Th-----------ank----------- yo-----------u f-----------or -----------you-----------r i-----------nte-----------res-----------t a-----------nd -----------buy-----------ing----------- my----------- po-----------ste-----------d s-----------olu-----------tio-----------n. -----------Ple-----------ase----------- pi-----------ng -----------me -----------on -----------cha-----------t I----------- am----------- on-----------lin-----------e o-----------r i-----------nbo-----------x m-----------e a----------- me-----------ssa-----------ge -----------I w-----------ill----------- be----------- qu-----------ick-----------ly