求C语言 “成绩管理系统”中的查询学生成绩,一种是按性别查询,一种是按成绩分布区间查询。急,在线等!

2024-11-24 08:39:41
推荐回答(1个)
回答1:

改过来了现在这些程序(不包括你没上传的)已经过60了#include "stdio.h"#include "string.h"#include "stdlib.h"#define N 2struct Student{ char num[10];char name[8];int Chinese;int math; int English; float average;};typedef struct Student Student;void notes (Student *stu);void sort(Student *stu);void main(){Student stu[N];int i;printf("\n——————————————————————学生成绩管理系统——————————————————————\n");for(i=0;i