用C语言的结构体编辑学生成绩管理系统!
用C语言的结构体编辑学生成绩管理系统!
日期:2018-03-14 13:11:29 人气:1
供参考,你自己修改一下吧!
#include
#include
#define STU_NUM 10//学生数
#define SCORE_NUM 6//每个学生的科目数
typedef struct /*定义结构体数组*/
{
char num[20]; /*学号*/
char name[20]; /*姓名*/
float score[SCORE_NUM]; /