1234567891011121314
void Undergrad::write_to_file(ofstream& fout) { fout.open("Undergrad.txt", ios::app); fout<< getfname()<< getlname()<< getid()<< getgpa() << getlvl()<< gethousing()<< getfees() << endl; fout.close(); } void grad::write_to_file(ofstream& fout) { fout.open("grad.txt", ios::app); fout << getfname()<< getlname()<< getid()<< gethours()<< getfees()<< getTA()<< getTT()<< endl; fout.close(); }