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

1
heads/add_module.h Normal file
View File

@@ -0,0 +1 @@
void add_module();

1
heads/delete_module.h Normal file
View File

@@ -0,0 +1 @@
void delete_module();

View File

@@ -0,0 +1,2 @@
#include "stu_info.h"
int main();

12
heads/for_main.h Normal file
View File

@@ -0,0 +1,12 @@
#include "stdio.h"
#include "stdlib.h"
#include "windows.h"
#include "main_menu.h"
#include "login_module.h"
#include "registered_module.h"
#include "secondary_menu.h"
#include "add_module.h"
#include "query_module.h"
#include "delete_module.h"
#include "statistic_module.h"
#include "modify_module.h"

1
heads/login_module.h Normal file
View File

@@ -0,0 +1 @@
void login_module();

1
heads/main_menu.h Normal file
View File

@@ -0,0 +1 @@
void main_menu();

1
heads/modify_module.h Normal file
View File

@@ -0,0 +1 @@
void modify_module();

1
heads/query_module.h Normal file
View File

@@ -0,0 +1 @@
void query_module();

View File

@@ -0,0 +1 @@
void registered_module();

1
heads/secondary_menu.h Normal file
View File

@@ -0,0 +1 @@
void secondary_menu();

1
heads/statistic_module.h Normal file
View File

@@ -0,0 +1 @@
void statistic_module();

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

5
heads/users.h Normal file
View File

@@ -0,0 +1,5 @@
struct user{
char account[20];
char password[20];
struct user *next;
};