SophiaPretty

(5)

$14/per page/Negotiable

About SophiaPretty

Levels Tought:
Elementary,Middle School,High School,College,University,PHD

Expertise:
Accounting,Algebra See all
Accounting,Algebra,Applied Sciences,Architecture and Design,Art & Design,Biology,Business & Finance,Calculus,Chemistry,Communications,Computer Science,Economics,Engineering,English,Environmental science,Essay writing Hide all
Teaching Since: Jul 2017
Last Sign in: 304 Weeks Ago, 5 Days Ago
Questions Answered: 15833
Tutorials Posted: 15827

Education

  • MBA,PHD, Juris Doctor
    Strayer,Devery,Harvard University
    Mar-1995 - Mar-2002

Experience

  • Manager Planning
    WalMart
    Mar-2001 - Feb-2009

Category > Computer Science Posted 06 Nov 2017 My Price 8.00

If a user's input string matches a known text message abbreviation,

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;

  }

 

Answers

(5)
Status NEW Posted 06 Nov 2017 12:11 PM My Price 8.00

-----------  ----------- 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

Not Rated(0)