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;
getlinecin userText;
getlinecin userName;
Your code goes here
cout userText endl;
return ;
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
