#include "Student.h" #include void main() { int answer; int average; Student st1; st1.notes[0]=75; st1.notes[1]=100; st1.notes[2]=60; st1.n_mikcoot=3; average=st1.average_notes(); cout << "The average note is: " << average << endl; cout << "To finish?"; cin >> answer; }