Modify songVerse to play "The Name Game" (see OxfordDictionaries.com), by replacing "(Name)" with userName but without the first letter. Ex: If userName = "Kaitlin" and songVerse = "Banana-fana fo-f(Name)!", the program prints: Banana-fana fo-faitlin! Ex: If userName = "Kaitlin" and songVerse = "Fee fi mo-m(Name)", the program prints: Fee fi mo-maitlin Note: You may assume songVerse will always contain the substring "(Name)".   *Please write this code in C++*

Systems Architecture
7th Edition
ISBN:9781305080195
Author:Stephen D. Burd
Publisher:Stephen D. Burd
Chapter3: Data Representation
Section: Chapter Questions
Problem 30VE: A(n) ____________ is one instance or variable of a class.
icon
Related questions
Question

Modify songVerse to play "The Name Game" (see OxfordDictionaries.com), by replacing "(Name)" with userName but without the first letter.

Ex: If userName = "Kaitlin" and songVerse = "Banana-fana fo-f(Name)!", the program prints:
Banana-fana fo-faitlin! Ex: If userName = "Kaitlin" and songVerse = "Fee fi mo-m(Name)", the program prints:
Fee fi mo-maitlin Note: You may assume songVerse will always contain the substring "(Name)".

 

*Please write this code in C++*

1 #include <iostream
2 #include <string
3 using namespace std;
4
5 int main) {
6.
string userName;
7
string songVerse;
8
9.
getline(cin, userName);
userName - userName.substr(1, userName.size() - 1); /I Remove first character
10
11
12
getline(cin, songVerse);
13
/ Modify songVerse to replace (Name) with userName without first character
14
15
16
17
17
18
cout « songverse « endl;
19
20
21 }
return e;
Transcribed Image Text:1 #include <iostream 2 #include <string 3 using namespace std; 4 5 int main) { 6. string userName; 7 string songVerse; 8 9. getline(cin, userName); userName - userName.substr(1, userName.size() - 1); /I Remove first character 10 11 12 getline(cin, songVerse); 13 / Modify songVerse to replace (Name) with userName without first character 14 15 16 17 17 18 cout « songverse « endl; 19 20 21 } return e;
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps with 2 images

Blurred answer
Knowledge Booster
Adjacency Matrix
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Systems Architecture
Systems Architecture
Computer Science
ISBN:
9781305080195
Author:
Stephen D. Burd
Publisher:
Cengage Learning