Advertisement
xRedactedx

Untitled

Oct 2nd, 2012
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.28 KB | None | 0 0
  1.         string fName, lName, course, fullName;
  2.         char unit, grade;
  3.  
  4.         while( in >> fName >> lName )
  5.         {
  6.             fullName = fName + " " + lName;
  7.             this->add_student( fullName );
  8.             while( in >> course >> unit >> grade )
  9.             {
  10.                 this->add_course( fullName, course, unit, grade ); 
  11.             }
  12.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement