// Student.h: interface for the Student class. // ////////////////////////////////////////////////////////////////////// #if !defined(AFX_STUDENT_H__4BC6F549_0DED_4B5F_9840_2F25FBC7924E__INCLUDED_) #define AFX_STUDENT_H__4BC6F549_0DED_4B5F_9840_2F25FBC7924E__INCLUDED_ #if _MSC_VER > 1000 #pragma once #endif // _MSC_VER > 1000 #include #include class Student { public: Student(); virtual ~Student(); int average_notes(); int n_mikcoot; // number of notes. int notes[10]; char name[15]; void set(char name1[15], int note1, int note2, int note3); }; #endif // !defined(AFX_STUDENT_H__4BC6F549_0DED_4B5F_9840_2F25FBC7924E__INCLUDED_)