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

📄 application1.h

📁 学生信息管理系统:本程序可以实现输入
💻 H
字号:

#ifndef Application_H
#define Application_H
#include "StudentInfo.h"
#include "ListNode.h"
#include "LinkedList.h"
class Application  
{
		
private:
	LinkedList<Student> list;
	void Insert();
	void Delete();
	void Find();
	void Update();
	void Sort();
	void Print();
 	void Analyze();
    void Save();
	void Load();	
public:
	Application();
   ~Application();
    void PrintTip();
    void Process();
  char GetResponse() const;

};

#endif 

⌨️ 快捷键说明

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