(Tiny) Sample Screen Output

This is what my final level program outputs to standard output (cout) when "clients" and "datecoms" are the files with those names in this directory.


processing gender: M
processing last name: Twain
processing first name: Mark
processing phone number: 667-1234
processing number of interests: 4
processing interest: bait_fishing
processing interest: rafting
processing interest: restaurants
processing interest: writing_novels
processing gender: F
processing last name: Millay
processing first name: Edna
processing phone number: 566-8821
processing number of interests: 3
processing interest: french_restaurants
processing interest: mythology
processing interest: poetry
==================================================
NEWCLIENT F Jones Jennifer 223-3321 4 bridge drink food fun

Sorry, no match was found for this client.
==================================================
NEWCLIENT M Jones George 221-2121 6 apples bridge drink eggs jazz samba

Sorry, no match was found for this client.
==================================================
NEWCLIENT F Smith Mary 223-3331 5 boating bridge eggs food samba

This match has been made: 

Mary                    George
Smith                   Jones
223-3331                221-2121
==================================================
PRINTMATCH

Matched Pairs:

George                  Mary
Jones                   Smith
221-2121                223-3331
==================================================
PRINTFREE

Unmatched Clients:

MEN:

Mark
Twain
667-1234


WOMEN:

Edna
Millay
566-8821

Jennifer
Jones
223-3321
==================================================
NEWCLIENT M Newman Paul 229-9876 5 cars drink exercise food fun

This match has been made: 

Paul                    Jennifer
Newman                  Jones
229-9876                223-3321
==================================================
PRINTMATCH

Matched Pairs:

George                  Mary
Jones                   Smith
221-2121                223-3331

Paul                    Jennifer
Newman                  Jones
229-9876                223-3321
==================================================
PRINTFREE

Unmatched Clients:

MEN:

Mark
Twain
667-1234


WOMEN:

Edna
Millay
566-8821
==================================================
UNMATCH Newman Paul
==================================================
PRINTMATCH

Matched Pairs:

George                  Mary
Jones                   Smith
221-2121                223-3331
==================================================
PRINTFREE

Unmatched Clients:

MEN:

Mark
Twain
667-1234

Paul
Newman
229-9876


WOMEN:

Edna
Millay
566-8821

Jennifer
Jones
223-3321
==================================================
QUIT
Received QUIT command, exiting.
Have a good day.
==================================================