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; }
Need a fast expert's response?
and get a quick answer at the best price
for any assignment or question with DETAILED EXPLANATIONS!
Comments