学生成绩管理系统(c语言写的)

KevinBrain 40 0 RAR 2018-12-20 09:12:15

用c写的教材管理系统 功能:实现学生信息的添加,删除,修改,查询,分类统计,文件操作。 总体结构如下: /* 1、创建链表 */ struct student *creat(struct student *head,FILE *fp); /* 2、查找链表 */ struct student *find(struct student *head,long num); /* 3、输出链表 */ struct student * print(struct student *head); /* 4、删除链表 */ struct student *del(struct student *head1,long num); /* 5、修改链表 */ struct student *chang(struct student *head,long num); /* 6、分类统计 */ struct student * label(struct student *head); /* 7、按年龄排序 */ struct student * pai(struct student *head); /* 8、打开文件 */ struct student * fu nc(); /* 9、输入函数 */ struct student * putin(struct student *p1,FILE *fp); 实现文件的操作 初始密码为“000000”

用户评论
请输入评论内容
评分:
Generic placeholder image 卡了网匿名网友 2018-12-20 09:12:16

非常不错,可以直接跑起来,现在自己再加上成绩信息和相关的处理作进一步的完善,谢谢分享

Generic placeholder image 卡了网匿名网友 2018-12-20 09:12:16

不错不错。资源很好~

Generic placeholder image 卡了网匿名网友 2018-12-20 09:12:16

代码写的不错,值得参考。

Generic placeholder image 卡了网匿名网友 2018-12-20 09:12:16

代码写得还可以,,可以自己拿来学习一哈,

Generic placeholder image 卡了网匿名网友 2018-12-20 09:12:16

代码还不错,下载稍稍改下就能运行了,不错。

Generic placeholder image 卡了网匿名网友 2018-12-20 09:12:16

代码合理,有几个汉字注释和单词写错了,不过无伤大雅。

Generic placeholder image 卡了网匿名网友 2018-12-20 09:12:16

链表和文件的运用比较好,我刚学这些,挺有参考价值的。