// Department.cpp: implementation of the Department class. // ////////////////////////////////////////////////////////////////////// #include "Department.h" ////////////////////////////////////////////////////////////////////// // Construction/Destruction ////////////////////////////////////////////////////////////////////// Department::Department() { } Department::~Department() { } float Department::average_note() // The average note of the whole department. { int i; float sum; float average; sum=0; for(i=0;i