Last active 2 months ago

hello-world.cpp Raw
1#include <iostream>
2#include <string>
3using namespace std;
4
5int main() {
6 string name;
7 cout << "\nWhat is your name (first and last)? ";
8 getline(cin, name);
9 cout << "\nHello, " << name << endl;
10 return 0;
11}