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; } }