import java.io.*;
class solary
{
public static void main(String[] agrs)throws IOException
{
char oper;
do
{
System.out.println("1.删除");
System.out.println("2.修改");
System.out.println("3.查询");
System.out.println("4.添加");
System.out.println("0.推出");
System.out.print("请输入选择:");
oper=(char)System.in.read();
switch(oper)
{
case '1':
System.out.println("sdsdsdsd");
break;
case '2':
System.out.println("dkfkj");
break;
case '3':
System.out.println("dfdfdfdf");
break;
case '4':
System.out.println("bbbbbbb");
break;
default:
System.out.println("输入错误");
}
}
while(oper!='0');
}
}
这个程序可以运行,但是我输入一个数字以后,他把那个界面给我打出来3次,不知道是为什么。要是没听懂,运行一下就知道那里不对了