class StudentManager
{
//定义3个数组为信息录入做准备
static int[] arrNum= new int[5];
static String[] arrName= new String[5];
static double[] arrScore= new double[5];
//计数器
static int count=0;
//用于记录角标
static int index;
public static void main(String[] args)
{
systemMain();
}
public static void systemMain()
{
System.out.println("************学生信息管理小系统**********");
core();
System.out.println("****************************************");
}
public static void core()
{
System.out.println("1,添加学生信息");
System.out.println("2,修改学生信息");
System.out.println("3,删除学生信息");
System.out.println("4,查询学生信息");
System.out.println("5,退出系统");
System.out.print("请选择功能序号:");
//接收用户输入的功能序号(键盘录入)
int code = returnInt();
choose(code);
}
public static void choose(int code)
{
switch(code)
{
case 1:
//调用添加学生信息的方法
addStudent();
break;
case 2:
//调用修改学生信息的方法
updateStudent();
break;
case 3:
//调用删除学生信息的方法
delStudent();
break;
case 4:
//调用查询学生信息的方法
queryStudent();
break;
default:
System.exit(1);
break;
}
}