mirror of
https://github.com/yv1ing/Student-Information-Management-System.git
synced 2025-09-16 14:44:46 +08:00
finished work
This commit is contained in:
1
heads/add_module.h
Normal file
1
heads/add_module.h
Normal file
@@ -0,0 +1 @@
|
||||
void add_module();
|
||||
1
heads/delete_module.h
Normal file
1
heads/delete_module.h
Normal file
@@ -0,0 +1 @@
|
||||
void delete_module();
|
||||
2
heads/for_function_module.h
Normal file
2
heads/for_function_module.h
Normal file
@@ -0,0 +1,2 @@
|
||||
#include "stu_info.h"
|
||||
int main();
|
||||
12
heads/for_main.h
Normal file
12
heads/for_main.h
Normal 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
1
heads/login_module.h
Normal file
@@ -0,0 +1 @@
|
||||
void login_module();
|
||||
1
heads/main_menu.h
Normal file
1
heads/main_menu.h
Normal file
@@ -0,0 +1 @@
|
||||
void main_menu();
|
||||
1
heads/modify_module.h
Normal file
1
heads/modify_module.h
Normal file
@@ -0,0 +1 @@
|
||||
void modify_module();
|
||||
1
heads/query_module.h
Normal file
1
heads/query_module.h
Normal file
@@ -0,0 +1 @@
|
||||
void query_module();
|
||||
1
heads/registered_module.h
Normal file
1
heads/registered_module.h
Normal file
@@ -0,0 +1 @@
|
||||
void registered_module();
|
||||
1
heads/secondary_menu.h
Normal file
1
heads/secondary_menu.h
Normal file
@@ -0,0 +1 @@
|
||||
void secondary_menu();
|
||||
1
heads/statistic_module.h
Normal file
1
heads/statistic_module.h
Normal file
@@ -0,0 +1 @@
|
||||
void statistic_module();
|
||||
8
heads/stu_info.h
Normal file
8
heads/stu_info.h
Normal 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
5
heads/users.h
Normal file
@@ -0,0 +1,5 @@
|
||||
struct user{
|
||||
char account[20];
|
||||
char password[20];
|
||||
struct user *next;
|
||||
};
|
||||
Reference in New Issue
Block a user