void insert(){
  //判断是否已达到最大容量，若是则提示并返回
  if(count>=MAX_STUDENT){
    printf("学生数量已达上限，无法添加！\n");
    return;
  }//添加学生信息
  printf("\n=====添加学生信息=====\n");
  //给数组末尾的学生赋值
  printf("学号：");
  scanf("%s",students[count].xh);
  printf("姓名：");
  scanf("%s",students[count].xm);
  printf("性别：");
  scanf("%s",students[count].xb);
  printf("年龄：");
  scanf("%d",&students[count].nl);
  printf("专业：");
  scanf("%s",students[count].zy);
  count++;//学生总数+1
  printf("添加成功！当前共%d名学生。\n",count);
}