C语言编程题,请帮帮忙。
C语言编程题,请帮帮忙。
日期:2021-07-21 19:12:41 人气:1
#include <stdio.h>
#include <stdlib.h>
#define STU_NUM 10 //学生数量
#define COURSE_NUM 3 //课程数量
struct stu
{
char id[10];
char name[10];
int score[COURSE_NUM];
float ave;
};
#include <stdlib.h>
#define STU_NUM 10 //学生数量
#define COURSE_NUM 3 //课程数量
struct stu
{
char id[10];
char name[10];
int score[COURSE_NUM];
float ave;
};