谁有C语言的课程设计啊 题目是图书信息管理系统

来源:百度知道 编辑:UC知道 时间:2024/05/23 16:46:29

#include <stdio.h>
#include <stdlib.h>
#include <conio.h>
#include <string.h>
#define MAX_NUM 45

struct studenter {
int ID;
char Name[10];
int Age;
char Sex[2];
int Birthday;
char Adress[15];
char TelNum[12];
char Email[10];
};

typedef struct studenter STUDENT;

void input(STUDENT stu[],int Max,int cn);
int findStudentID(STUDENT stu[],int findID,int Max);
void DisplayInfor(STUDENT stu[],int Max);
void DispMainMenu();
void DispQueryMenu();
char choice();
int InforInput(STUDENT stu[],int cn);
void QueryInfor(STUDENT stu[],int Max);
void EditInfor(STUDENT stu[],int Max);

void DispMainMenu()
{
printf("**************学生信息管理系统1.0**************\n");
printf("\t1--学生信息录入 \t2--学生信息修改\n");
printf("\t3--学生信息查询 \t4--学生信息删除\n&qu