Ok, I personally know little to nothing about programming in C or C++, but i'm trying to help out a friend here........

Just as a quick explanation - this program is supposed to be a mock FAFSA (free application for student aid, i think). Anyway, basically the program starts with a menu, you make whatever selection, and it asks the corresponding questions. Once the person has answered all the questions, it's basically supposed to spit out a summary of all the info that was entered. So, if anyone could go thgrough and make the necessary corrections, and re-post the code, it would be very much appreciated. Thanks in advance for any help.

I know it's quite a bit of code, but he really needs help.

[code]
#include <iostream>
#include <string>
#include <fstream>


using namespace std; //introduces namespace std
double studentsum (double workincome1,double amtpaid1,double studentinvestment1, double studentstash1);
int main( void )


{
cout << "Welcome To The Alternative FAFSA Form \n";//general greeting

for(;/*forever loop, a feature used extensively in the program,