- 15
- 0
- 约11.54万字
- 约 13页
- 2016-12-25 发布于河南
- 举报
求一个C语言编写的班级信息管理系统
要求有 班级信息录入,班级信息查询,班级信息修改,班级信息全部显示。
录入的信息有:班级 级别 专业 班主任 总人数 男生人数 女生人数。求代码
#include stdio.h
#include malloc.h
#include string.h
#include io.h
#define NULL 0
#define LEN sizeof(struct student)
#define FILE_DATA_PATH c:\student.txt
struct student
{
long int num;
char name[20];
int age;
char sex[4];
char birthday[10];
char address[30];
long int tele_num;
char E_mail[20];
struct student *next;
};
int TOTAL_NUM = 0;
struct student *head = NULL;
void welcome();
void mainmenu();
void record();
void insert(struct student *stu);
void display(struct student *stu
原创力文档

文档评论(0)