Write a program that asks the user for their name and greets them with their name. (Example “Hello Jade”)
#include <iostream>
#include <iomanip>
using namespace std;
//Socket WWW in C+
int main()
{
string name;
cin>>name;
cout<<"Hello "<<name<<endl;
return 0;
}
Comments
Leave a comment