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

📄 application.h

📁 简易学生管理系统,有删除添加查找编辑修改等功能
💻 H
字号:
#ifndef  APPLICATION_CLASS
#define  APPLICATION_CLASS

#include "Student.h"

class Application
{
private:
	Student s[100];
	int stuNumber;

private:
	int Find(unsigned int id);
	int Find(char* name);

	void Update(unsigned int id);
	void Update(char* name);

	void Add();

	void Sort();

	void Save();
	void Load();

public:
	Application(int n = 0) {stuNumber = n;}
	
	void PrintMenu() const;
	void Process();
	int  GetResponse() const;
};

#endif //APPLICATION_CLASS

⌨️ 快捷键说明

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