怎么听不懂呢 再说就重复了
struct student
{
int class_; //班级
char name[20]; //姓名
char number[20]; //学号
float cj1;
float cj2;
float cj3;
float cj4;
float cj5;
float Average;
};
struct student students[1000]; //这里就是在全局内存堆上申请了1000个sizeof(结构体)的空间,如果申请成功的话,那么你以后的针对该结构体数组的操作都是在这个块内存上操作,任何一个函数都可以的
int num=0;
struct student
{
int class_; //班级
char name[20]; //姓名
char number[20]; //学号
float cj1;
float cj2;
float cj3;
float cj4;
float cj5;
float Average;
};
struct student students[1000]; //这里就是在全局内存堆上申请了1000个sizeof(结构体)的空间,如果申请成功的话,那么你以后的针对该结构体数组的操作都是在这个块内存上操作,任何一个函数都可以的
int num=0;
DO IT YOURSELF !