200字范文,内容丰富有趣,生活中的好帮手!
200字范文 > c语言两千行以内代码 C语言的教务管理系统(2000行代码)(106页)-原创力文档

c语言两千行以内代码 C语言的教务管理系统(2000行代码)(106页)-原创力文档

时间:2021-02-17 10:56:22

相关推荐

c语言两千行以内代码 C语言的教务管理系统(2000行代码)(106页)-原创力文档

实用标准文案

C 语言教务管理系统

一、程序结构图

精彩文档

实用标准文案

二、程序运行截图

1. 个人信息简介

2. 修改颜色

3. 注册界面

精彩文档

实用标准文案

4. 信息保存至文件

5. 登录界面

精彩文档

实用标准文案

6. 管理员录入信息

7. 学生信息录入

8. 学生成绩录入

精彩文档

实用标准文案

9. 学生课程表录入

精彩文档

实用标准文案

10. 学生信息查询界面

11 学生信息查询

精彩文档

实用标准文案

12. 学生成绩查询

13. 学生课表查询

三、代码(一个 cpp )

#include

#include

#include

#include

#include

精彩文档

实用标准文案

#include"windows.h"

#define student_num 1000 /* 定义 1000 个学生 */

#define teacher_num 5 /* 定义 5 个老师(管理员) */

int is_my_student(struct student *p,int *size); /* 声明 返回第 i+1 个学生的函数 */

int is_my_teacher(struct teacher *p,int *size); /* 声明 返回第 i+1 个老师的函数 */

int length_student_name(char *p); /* 声明 验证用户名函数 */

int length_student_password(char *p); /* 声明 验证密码长度函数 */

int length_teacher_name(char *p); /* 声明 验证用户名函数 */

int length_teacher_password(char *p); / * 声明 验证密码长度函数 */

int show_menu_login(); /* 声明 登录菜单函数 */

int show_menu_register(); /* 声明 注册菜单函数 */

int show_teacher_select(); /* 声明 教师录入菜单函数 */

int show_student_select(); /* 声明 学生查询菜单函数 */

int student_register(struct student *ptr_student,int *size); /* 声明 学生注册函数 */

int teacher_register(struct teacher *ptr_teacher,int *size)

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。