有勇气的牛排博客

基于C语言 学生学籍信息管理系统_100001

有勇气的牛排 335 C语言项目 2021-08-26 21:57:34

1 概要

1.1 模块

该项目部包括5大模块:

  • 学生学籍信息录入
  • 查看学生信息
  • 学生学籍排序
  • 修改学生信息
  • 删除学生信息

1.2 知识点

  • 结构体
  • txt文本读写
  • 指针
  • 内存空间申请

2 涉及函数

main() // 主函数
//一、输入学生学籍信息
struct node *create_students()

//二、输出所有学生信息

//三、排序功能   思路:读取--修改--保存
void sort_students(struct node *h)

//四、===========修改学生信息======
void modify_students(struct node *h)

//五、删除指定学生信息
void delete_students(struct node *h)

部分代码

#include<stdio.h> #include<string.h> #include<stdlib.h> #include<windows.h> //创建结构体 struct students { int id; char name[60]; char address[60]; }; //创建链表 struct node { struct students data; struct node *next; }; struct node *create_students(); void print_students(struct node *h); void sort_students(struct node *h); void modify_students(struct node *h); void delete_students(struct node *h); void menu(); main(){ ... }

3 展示

目录
image.png

添加信息
image.png

查看信息
image.png

排序

image.png

修改信息
image.png

删除
image.png

退出

image.png

项目编号:100001

需要的可联系群主:
qq群:629640042

点击链接加入群聊【程序员兼职接单群】:https://jq.qq.com/?_wv=1027&k=3JarmEmO


留言

专栏
文章
加入群聊