📄 grade.h
字号:
#pragma once
#include <iostream>
#include <string>
#include "Manage.h"
using namespace std;
class Grade
{
public:
Grade(void);
Grade(int Eng,
int Math,
int C,
int Phy,
int DB)
:m_nEng(Eng),m_nMath(Math),m_nC(C),m_nPhy(Phy),m_nDB(DB){}
Grade(int *s);
~Grade(void);
public:
friend ostream&
operator<<(ostream&, Grade&);
friend void Manage::CourseInquireCheck(int type);
friend void Manage::Modify();
void LevelJudge(string*);
private:
int m_nEng;
int m_nMath;
int m_nC;
int m_nPhy;
int m_nDB;
};
typedef Grade* LPGrade;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -