用c语言编写学生成绩档案管理,要求:(1)输入若干条记录并保存文件(指学生的信息);(2)学生信息录入
用c语言编写学生成绩档案管理,要求:(1)输入若干条记录并保存文件(指学生的信息);(2)学生信息录入
日期:2018-03-07 13:55:40 人气:1
#include
#include /*其它说明*/
#include /*字符串函数*/
#include
#define LEN sizeof(STUDENT)
typedef struct stu /*定义结构体数组用于缓存数据*/
{
char num[6];
char name[5];
int score[3];
int sum;
float average;
int