Last active 4 months ago

Revision 30f51491e57910ca4544138cde84a20530c838f5

hello.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}