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

📄 reportcontrol.c

📁 一个c语言实现的球员管理系统
💻 C
字号:
#include"common.h"

void reportControl(pInfoHead phead)
{
	char choose;	
	while(true)
	{
		CLS();
		reportMenu();
		do{
			while(strchr("12340",choose=getch())==NULL)
				continue;
		}while(0==choose);
		switch(choose)
		{
		case '1':countMember(phead);break;
		case '2':countSalary(phead);break;
		case '3':reportByRole(phead);break;
		case '4':reportCusTomize(phead);break;
		case '0':return ;
		}		
	}
}

⌨️ 快捷键说明

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