📄 welcome.cpp
字号:
#include "1.h"
#include "c_student.h"
void welcome()
{
C:
system("cls");
cout<<endl<<endl<<endl<<endl;
cout<<" ++++++++++++++++++++++++++++++++++++++++++++++++\n";
cout<<" + +"<<endl;
cout<<" + 欢 迎 您 使 用 学 生 选 课 系 统 +"<<endl;
cout<<" + +"<<endl;
cout<<" ++++++++++++++++++++++++++++++++++++++++++++++++"<<endl;
cout<<endl<<endl<<endl;
cout<<" 1.信息录入"<<endl<<endl;
cout<<" 2.课程信息浏览"<<endl<<endl;
cout<<" 3.学生选课"<<endl<<endl;
cout<<" 4.综合信息查询"<<endl<<endl;
cout<<" 5.退出"<<endl;
string i;
cin>>i;
system("cls");
if(i=="1") put_in_information();
else if(i=="2") display_information();
else if(i=="3") select_lesson();
else if(i=="4") find_information();
else if(i=="5") exit();
else
{
cout<<" 您输入的信息错误,请重新输入..."<<endl;
cout<<" 请按回车键继续..."<<endl;
while(!kbhit());
getchar();
goto C;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -