?? grade.h
字號(hào):
#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;
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -