deeds.h
来自「学生成绩管理。 Win32(dos)字符界面。可实现读入、简单计算、统计、输出」· C头文件 代码 · 共 82 行
H
82 行
#ifndef _DEEDS_H
#define _DEEDS_H
void Delay(short );
void Welcome();
void PrintMenu();
void EditCourses(struct student *&,struct courselist *&);
void InputCourses(struct student *&,struct courselist *&);
void DeleteCourses(struct student *&,struct courselist *&);
void DeleteCourseOfStudent(struct student *&,short );
void ScoresOfCourse(struct student *&,struct courselist *&);
void InputScoresOfCourse(struct student *&,struct courselist *&);
void InputScoresOfCourse_(struct student *&,char []);
void SearchOfCourse(struct student *&,struct courselist *&);
void PrintScoresOfCourse(student *&,short ,bool &);
void StudentAdd_Delete(struct student *&,struct courselist *&);
void StudentAdd(struct student *&,struct student *&);
void AddCourses(struct student *&,struct courselist *&);
void StudentAdd_Name(struct student *&,struct student *&);
void StudentAdd_Number(struct student *&,struct student *&);
void StudentDelete(struct student *&);
void Search(struct student *&);
struct student *SearchByName(struct student *&,char [],struct student *&);
struct student *SearchByNumber(struct student *&,char [],struct student *&);
void Sort(struct student *&,struct courselist *&);
void Tree(struct student *&,struct student *&,char [],void (*function)(struct student *&,struct student *&,char []));
void Sort_Score(struct student *&,struct student *&,char []);
void CalculateGPA(struct student *&,struct courselist *&);
void CalcGPA(struct student *&,struct courselist *&);
float ScoreToGPA(float );
void Statistic(struct student *&,struct courselist *&);
void Stat(struct student *&,short [],char []);
void PrintToScreen_Name(struct student *&);
void PrintToScreen_Number(struct student *&);
void PrintToScreen_Score(struct student *&);
void PrintSingleStudent(struct student *&);
void PrintFormHead(struct courselist *);
void Free_Student(struct student *&);
void Free_Courselist(struct courselist *&);
void Exit(struct student *&,struct courselist *&);
void StoreSucceed(char []);
void GoodBye();
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?