After:

do 
{
   // Ask whether the user wants to process another student's tuition
   cout << "Would you like to process a student's tuition (y/n)?" << endl; 
   cin >> reply; 
   reply = tolower(reply);    
} while (!(reply == 'y' || reply == 'n')); 

// Increment the number of students processed
++processed;