finished work

This commit is contained in:
Fangnan
2022-09-28 16:24:43 +08:00
commit 3a65cbab8e
27 changed files with 2085 additions and 0 deletions

8
heads/stu_info.h Normal file
View File

@@ -0,0 +1,8 @@
struct stu{
char stu_num[20];
char name[20];
char gender[10];
int age;
float chinese,math,english;
struct stu *prev,*next;
};