#include <stdio.h>
#define N 3
struct student
{
int num;
char name[10];
int score[3];
};
void input(struct student[],int n)
{
}
void output(struct student[],int n)
{
}
void main()
{
int i;
struct student s[N];
printf("Input data:\n");
printf("\nOutput data:\n");
}
在这个基础上修改,跪求大神