In this assignment, you’ll decode Twitter messages that include Internet abbrevi
ID: 3764288 • Letter: I
Question
In this assignment, you’ll 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”. You’ll need to submit each step as a separate file.
2. Allow the user to enter a complete tweet (160 characters or less) as a single line of text. Use getline to get the single line of text then resize (or truncate) to 160 characters. Search the resulting string (using string’s find function) for those common abbreviations and print a list of each abbreviation along with its decoded meaning. Save your solution for this step in a file named “step2.cpp”. You’ll need to submit each step as a separate file.
3. Convert the user's tweet to a decoded tweet, replacing the abbreviations directly within the tweet. You only need to replace the first instance of a particular abbreviation. Save your solution for this step in a file named “step3.cpp”. You’ll need to submit each step as a separate file.
Post the code as step 1, 2 and 3 please
thanks
Explanation / Answer
LOL AND IRL
#include <iostream>
#include <string>
using namespace std;
int main() {
string origTweet;
getline(cin, origTweet);
if (origTweet.find("LOL") < origTweet.length())
cout << origTweet.replace(origTweet.find("LOL"), 3, "Laugh out Loud") << endl;
if (origTweet.find("BFN") < origTweet.length())
cout << origTweet.replace(origTweet.find("BFN"), 3, "bye for now") << endl;
if (origTweet.find("FTW") < origTweet.length())
cout << origTweet.replace(origTweet.find("FTW"), 3, "for the win") << endl;
if (origTweet.find("IRL") < origTweet.length())
cout << origTweet.replace(origTweet.find("IRL"), 3, "in real life") << endl;
if (origTweet.find("BRB") < origTweet.length())
cout << origTweet.replace(origTweet.find("BRB"), 3, "be right back") << endl;
if (origTweet.find("BBL") < origTweet.length())
cout << origTweet.replace(origTweet.find("BBL"), 3, "be back later") << endl;
else {
cout<< "Don't know";
}
return 0;
}
PROGRAM FOR 1,2 AND 3 STEPS
Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.