为了账号安全,请及时绑定邮箱和手机立即绑定

JAVA模拟图书查询

标签:
Java
package bookstroe.test;

import java.util.InputMismatchException;
import java.util.Scanner;

public class Bookstore {
    String[] book = {"java", "高数", "C++", "python"};
    int flag = 0;

    public static void main(String[] args) {
        Bookstore bs = new Bookstore();
            bs.select();
    }

    public void select() {
        Scanner input =new Scanner(System.in);
            try {
                System.out.println("输入命令:1-按照名称查找图书;2-按照序号查找图书\n");
                int chose = input.nextInt();
                if (chose != 1 && chose != 2) {
                    throw new InputException();
                } else if (chose == 1) {
                    System.out.println("输入图书名称:");
                    String name = input.next();
                    selectName(name);
                    select();
                } else {
                    System.out.println("输入图书序号:");
                    int number = input.nextInt();
                    selectNumber(number);
                    select();
                }
            } catch (InputException | InputMismatchException e) {
                System.out.println("命令输入错误!请根据提示输入数字命令\n");
                select();
            } catch (NameNotFoundException | ArrayIndexOutOfBoundsException e) {
                System.out.println("图书不存在!\n");
                select();
            }catch (Exception e){
                e.printStackTrace();
            }
    }

    public void selectName(String name) throws NameNotFoundException {
        for (String s : book) {
            if (s.equals(name)) {
                System.out.println("book:" + name);
                flag = 1;
            }
        }
        if (flag == 0) throw new NameNotFoundException();
    }

    public void selectNumber(int number) {
        System.out.println("book:" + book[number]);
    }
}
package bookstroe.test;

public class NameNotFoundException extends Exception{
    public NameNotFoundException(){

    }
    public NameNotFoundException(String message){
        super(message);
    }

}
package bookstroe.test;

public class InputException extends Exception{
    InputException(){

    }
    InputException(String message){
        super(message);
    }
}


点击查看更多内容
TA 点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
  • 推荐
  • 评论
  • 收藏
  • 共同学习,写下你的评论
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消