// Student.cpp: implementation of the Student class. // ////////////////////////////////////////////////////////////////////// #include "Student.h" ////////////////////////////////////////////////////////////////////// // Construction/Destruction ////////////////////////////////////////////////////////////////////// Student::Student() { } Student::~Student() { } int Student::average_notes() { int ave_note; int sum; int i; sum=0; for(i=0;i