From f063e83d9352b3dafc914c8f96d9fc8b7b2ba508 Mon Sep 17 00:00:00 2001 From: pr9nfksyw Date: Fri, 22 Nov 2024 20:34:26 +0800 Subject: [PATCH] Delete 'menu.h' --- menu.h | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 menu.h diff --git a/menu.h b/menu.h deleted file mode 100644 index 26cba7e..0000000 --- a/menu.h +++ /dev/null @@ -1,27 +0,0 @@ -#ifndef MENU_H // 保护定义,防止.h文件被重复调用 -#define MENU_H - - -#define MAX_STUDENTS 100 -#define MAX_STRING 20 - -typedef struct { - char id[MAX_STRING]; - char clas[MAX_STRING]; - char name[MAX_STRING]; - double score1; - double score2; - double score3; - double score; -} Student; - -void displayMenu(); -void inputStudentInfo(Student students[], int* count); -void displayStudentInfo(Student students[], int count); -void insertStudentInfo(Student students[], int* count); -void deleteStudentInfo(Student students[], int* count); -void modifyStudentInfo(Student students[], int count); -void queryStudentInfo(Student students[], int count); - - -#endif \ No newline at end of file