- 7
- 0
- 约1.83万字
- 约 16页
- 2018-04-15 发布于浙江
- 举报
[2018年最新整理]学籍信息管理系统设计源代码
#include stdio.h
#define N 50
#define M 200
int stumax=0,scoremax=0;
FILE *fp;
struct student
{
char num[9]; //学号
char name[20]; //姓名
int sex; //性别
int room; //宿舍号码
long int tel; //电话号码
}stu[N];
struct stuscore
{
char num[9]; //学号
char coursenum[10]; //课程编号
char course[15]; //课程名称
float point; //学分
int nscore; //平时成绩
int expscore; //实验成绩
int examscore; //卷面成绩
int comscore; //综合成绩
float getpoint;//实得学分
}score[M],score1[M];
void enter_stu();
void input_stu(int j);
void enter_score();
void input
原创力文档

文档评论(0)