First make sure you have the file on your disk in proper format.
Now look closely, at the itsAboutYou2 code, you already have read the file to all the variables right?
Now you need to display on screen. So you can use cout.
Just add
cout << endl;
cout << age << endl;
cout << gpa << endl;
cout << name << endl;
cout << gender << endl
after fin.close() and it will run.(it is running on my pc atleas)