gram 1 is as follows : #include #include using namespace std; int main() { string name; cout<<"What is your full name?"<> name; // What
#include <iostream>
#include <string>
using namespace std;
int main()
{
string name;
cout<<"What is your full name?"<<endl;
cin >> name; // What is your input?_________________________________
cout<<"Good afternoon, "<<name<<endl;
return 0;
}
My objective is to rewrite program 1 using getline function to read your name, so that the system can read and display your first name, middle name and last name. Here is the program outline that was presented to me, what would be the correct format or missing lines from this outline to use the getline function correctly ?
#include <iostream>
#include <string>
using namespace std;
int main()
{
string name;
cout<<"What is your full name?"<<endl;
// using getline to read your first name, middle name and last name
____________________________
cout<<"Good afternoon, "<<name<<endl;
return 0;
}
Trending now
This is a popular solution!
Step by step
Solved in 4 steps with 1 images