Question: Feedback? String Input You can read a string from the console: cout Please enter your name: ; string name; cin name; When a string

Feedback?
String Input
You can read a string from the console:
cout "Please enter your name: ";
string name;
cin name;
When a string is read with the operator, only one word is placed into the string variable. For example, suppose the user types
Harry Morgan
as the response to the prompt. This input consists of two words. After the call cin >> name, the string "Harry" is placed into the variable name. Use another input statement to read the second word.
PARTICIPATION
ACTIVITY
2.13.3: Write a program that reads in and reformats a first and last name.
Write a program that reads in the first and last name of a person and formats the full name as the last name, followed by a comma, a space, and the first name. For example:
Please enter your first and last name on the next line.
Harry Morgan
Morgan, Harry
#include
 Feedback? String Input You can read a string from the console:

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!