#include <stdio.h>
#include <stdlib.h>
#include <math.h>
typedef struct CoursesScore
{
int ChineseScore;
int MathScore;
int EnglishScore;
char StudentName[10];
}CoursesScore,CoursesScoreRecords[8];
typedef struct studentscore
{
CoursesScore cs;
in