You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
233 B

typedef struct //结构体
{
double no;
char name[30];
float cscore;
}Student;
FILE *fp;
int i=0;
Student s[50];
int main() /*主函数*/
{
int n;
system("cls");
n=fun();
choose(n);
return 0;
}