#include #include #include #include "school.h" // implementation of school class // created 3/3/98 School::School() // initialize school to start at time 0 { srand(time(0)); rand(); announce_list[0]="An assignment is due tomorrow."; announce_list[1]="We will be playing games in class today."; announce_list[2]="Do not use email during class."; announce_list[3]="The internet will be down for the rest of the year."; announce_list[4]="You can all eat candy and play games for the rest of the year."; rand_person[0]="Jesse"; rand_person[1]="Ravan"; rand_person[2]="Nina"; rand_person[3]="Kyle"; rand_person[4]="Mike"; rand_question[0]="Can I go to the bathroom?"; rand_question[1]="I don't understand this."; rand_question[2]="Can we go on the Internet?"; rand_question[3]="When is this assignment due?"; rand_question[4]="Can we play games now?"; } void School::Start(int assignment, int announcements) //Will tell the class what assignment we are working on //and announcements number of announcements { int i; cout << "Attention class I just have "<