#include<stdio.h>
#include<conio.h>
#include<string.h>
#include<stdlib.h>
int stunum=0;
struct student
{
int id;
char name[30];
int age;
char sex[2];
char birthday[9];
char add[80];
char tel[15];
char email[25];
}stu[100];
void pr()
{
system("cls");
printf("******欢迎使用此学生信息管理系统******");
printf("\n----------V 1.0.0 ----------");
printf("\n您想要:");
printf("\n 1.录入学生信息");
printf("\n 2.浏览学生信息");
printf("\n 3.检索学生信息");
printf("\n 4.退出信息管理");
printf("\n****************************\n");
}
void pr2()
{
void jsid();
void jsname();
int a;
char ch;
while (a)
{
system("cls");
printf("******学生信息管理系统******");
printf("\n----------检 索----------");
printf("\n您想要:");
printf("\n 1.按学号检索");
printf("\n 2.按姓名检索");
printf("\n 3.返回主菜单");
printf("\n****************************\n");
ch=getchar(); switch(ch)
{
case '1':jsid();break;
case '2':jsname();break;
case '3':a=0;break;
}
}
}