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; }