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

简单的图书租借系统 两种方式租书

标签:
Java
package com.imooc.bookrent;

import java.util.Scanner;

public class BookRent {

    static String[] books=new String[80];
    static int b=0;

    public void test1(){
        System.out.println("请选择查书方式:输入1.序号           输入2.书名");
        do{
            try {

                Scanner sc=new Scanner(System.in);
                int x=sc.nextInt();
                if(x==1){
                    System.out.println("请输入图书序号:");
                    b=x;
                    break;  
                }else if(x==2){
                    System.out.println("请输入书名:");
                    b=x;
                    break;  
                }else{
                    System.out.println("请输入有效数字:");
                    continue;
                }

            } catch (Exception e) {
                // TODO: handle exception
                System.out.println("输入有误!请重新输入:");
                continue;
            }
           }while(true);

    }

    public static void main(String[] args) {
        // TODO Auto-generated method stub
        BookRent bk=new BookRent();
        bk.test1();
        do{
        Scanner sc=new Scanner(System.in);
        try{
        if(b==1){
            int n=sc.nextInt();
            System.out.println("租书:"+books[n]);
        }
        }catch(Exception e){
            System.out.println("不存在该图书,请重新输入:");
            continue;
        }

        if(b==2){
            String n=sc.nextLine();
            System.out.println("租书:"+n);
        }
        }while(true);

    }

}
点击查看更多内容
2人点赞

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

评论

作者其他优质文章

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

100积分直接送

付费专栏免费学

大额优惠券免费领

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

举报

0/150
提交
取消