aboutsummaryrefslogtreecommitdiffstats
path: root/ee1301/wk1/lab1/strap012_lab1_c_2.cpp
blob: 941d8dee32a35113e17eec29d4cf373f8a4ca756 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include <iostream>
using namespace std;

int main()
{
    string first;
    string middle;
    string last = " ";
    cout << "What is your full name?" << endl;
    cin >> first >> middle >> last;
    if (last == " ")
    {
        cout << middle << ", " << first;
    }
    else
    {
        cout << last << ", " << first << " " << middle << endl;
    }
}