📄 teacher.h
字号:
//teacher.h
#if !defined(TEC_H)
#define TEC_H
#include"cpp9.h"
class teacher
{
char name[10];
password pwt;
course co;
int flage;
teacher *next;
public:
static int tcount;
teacher();
~teacher();
void tecset(teacher *a,course*topco);
void tecdisplay(teacher *a);
teacher *teclist(teacher *top,course *topco);
course Getco(){return co;}
void GiveScore(teacher*topt,Student*p);
};
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -