新建main.cpp
1 #include
2 #include "student.h"
3
4 using namespace std;
5
6 void printMenu() {
7 cout << "**********************************" << endl;
8 cout << "*\t0.退出" << endl;
9 cout << "*\t1.打印学生信息" << endl;
10 cout << "*\t2.添加学生信息" << endl;
11 cout << "*\t3.通过学号查询学生信息" << endl;
12 cout << "*\t4.修改学生信息" << endl;
13 cout << "*\t5.删除学生信息" << endl;
14 cout << "*\t6.清屏" << endl;
15 cout << "**********************************" << endl;
16 cout<< "please select:" << endl;
17 }
18
19 void keyDown() {