Question: This assignment is in C++ Please post code here is the starter code #include #include using namespace std; int main() { string tweet; cout <

This assignment is in C++

Please post code

here is the starter code

#include #include using namespace std; int main() { string tweet; cout << "Enter abbreviation from tweet: "; cin >> tweet; // Output decoded abbreviation from tweet if (tweet == "LOL") { cout << "LOL = laughing out loud" << endl; } else if (tweet == "IRL") { cout << "IRL = in real life" << endl; } else { cout << "Sorry, don't know that one." << endl; } return 0; }

Please post code so that I can see what you did.

Branching - Tweet decoder

In this assignment, youll decode Twitter messages that include Internet abbreviations, such as

LOL and IRL. The starter program decodes two abbreviations.

1. Expand the number of abbreviations that can be decoded to include the following:

AFK = away from keyboard

NVM = never mind

BFF = best friends forever

FTW = for the win

IIRC = if I recall correctly

TTYL = talk to you later

IMHO = in my humble opinion

Save your solution for this step in a file named step1.cpp. Youll need to submit each step as a

separate file.

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!