diff --git a/主函数.c b/主函数.c new file mode 100644 index 0000000..938b7ee --- /dev/null +++ b/主函数.c @@ -0,0 +1,20 @@ +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; +}