📄 manage_1.h
字号:
#include <iostream>
#include <string>
using namespace std;
const int student_total_number=50; //最大学生人数
const int subject_number=2; //科目数
int record_mark=0; //记录标志
string subject_name[subject_number]; //科目名
struct student
{
string number; //学号
string name; //姓名
string grade; //年级
float score[subject_number]; //分数
};
void subject_name_boot() //科目名初始化
{
subject_name[0]="语文";
subject_name[1]="数学";
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -