Question: Given string userText on one line and string userName on a second line, append a space to userText. Then, append userName to userText. Lastly, append

Given string userText on one line and string userName on a second line, append a space to userText. Then, append userName to userText. Lastly, append a period to userText.
Ex: If the input is:
Hi
Ron
then the output is:
Hi Ron. #include
#include
using namespace std;
int main(){
string userText;
string userName;
getline(cin, userText);
getline(cin, userName);
/* Your code goes here */
cout << userText << endl;
return 0;
}

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!