⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 searchmenu.h

📁 用C++和链表写的学生成绩管理系统
💻 H
字号:
#ifndef SEARCHMENU_H_
#define SEARCHMENU_H_


//定义查询菜单函数
int search_menu_select()
{
	char selection;
	cout<<"********************************菜单******************************"<<endl;
	cout<<"*                         a:按学号查询                           *"<<endl;              
	cout<<"*                         b:按姓名查询                           *"<<endl;              
	cout<<"*                         c:按科目查询                           *"<<endl;			
	cout<<"*                         d:按成绩查询                           *"<<endl;              
	cout<<"*                         e:按学期查询                           *"<<endl;				 
	cout<<"******************************************************************"<<endl;

	do
	{
		 cout<<"请输入您的选择(a--e):";  
		 cin>> selection;
	}while( selection<'a' ||  selection>'e');      //如果选择项不在a~e之间则重输
	return  selection;						   //返回选择项,主函数根据该数调用相应的函数
}


#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -