public void test2(){
Scanner input=new Scanner(System.in);
System.out.println("输入命令:1-按照图书名称查询;2-按照图书序号查询");
try{
int a=input.nextInt();
test1(a);
}catch(Exception e){
System.out.println("请正确输入:");
test2();
}
}
public void test1(int b){
Scanner input=new Scanner(System.in);
if(b==1){
System.out.println("输入图书的名称:");
String name=input.next();
if(name.equals("高数")||name.equals("英语")||name.equals("语文")){
System.out.println("book:"+name);
}else{
System.out.println("图书不存在!");
test2();
}
}
else{
System.out.println("输入图书的序号:");
int cc=input.nextInt();
String sm[]={"语文","数学","英语","政治","健康","财经","日语"};
if(cc<sm.length){
System.out.println("book:"+sm[cc]);
}else{
System.out.println("图书不存在!");
test2();
}
}
}
public static void main(String[] args) {
Initial hobby=new Initial();
hobby.test2();
}
点击查看更多内容
3人点赞
评论
共同学习,写下你的评论
评论加载中...
作者其他优质文章
正在加载中
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦