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

打卡-交作业

package Demo;


import java.util.Scanner;


public class JieShu {

public static void main(String[] args) {

//System.out.println("*******欢迎来到慕课网借书系统*******");

JieShu test=new JieShu();

test.BorrowBook();

}

public  void BorrowBook() {

System.out.println("输入命令:1-按照名称查找图书;2-按照序号查找图书");

Scanner input=new Scanner(System.in);

try {

int num=input.nextInt();

if(num==1) {

MingCheng();

}else if(num==2) {

XuHao();

}

}catch(Exception e) {

System.out.println("命令输入错误!请根据提示输入数字命令");

BorrowBook();

}

}

public void MingCheng(){

System.out.println("输入图书名称:");

Scanner input1=new Scanner(System.in);

try{

String Bookname =input1.nextLine();

MingChengBook(Bookname);

}catch(Exception e){

System.out.println("命令输入错误!请根据提示输入数字命令");

BorrowBook();

}

}

public void XuHao(){

System.out.println("输入图书名序号:");

Scanner input2=new Scanner(System.in);

try{

int Booknum =input2.nextInt();

XuHaoBook(Booknum);

}catch(Exception e){

System.out.println("命令输入错误!请根据提示输入数字命令");

XuHao();

}

}

public void MingChengBook(String Bookname) {

String Books[]= {"数据结构","高数","java语言","英语"};

try {

int a=-1;

for(int i=0;i<Books.length;i++) {

if(Books[i].equals(Bookname)) {

System.out.println("book:"+Books[i]);

a=1;

}

}

if(a==-1) {

throw new Exception();

}

}catch(Exception e){

System.out.println("图书不存在!");

BorrowBook();

}  

}

public void XuHaoBook(int Booknum) {

String Books[]= {"数据结构","高数","java语言","英语"};

try {

if(Booknum>0&&Booknum<=Books.length){

System.out.println("book:"+Books[Booknum-1]);

}else {

throw new Exception();

}

}catch(Exception e){

System.out.println("图书不存在!");

BorrowBook();

}

}

}


正在回答

1 回答

好像一开始不输入1或者2 的话也不会抛出异常呀~~~


1 回复 有任何疑惑可以回复我~
#1

慕丝4409378 提问者

我这里运行没有出现你说的那个问题啊
2019-04-16 回复 有任何疑惑可以回复我~
#2

qq_说散就散_0 回复 慕丝4409378 提问者

你的刚开始else if后面还要加一个else
2019-09-16 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
Java入门第三季
  • 参与学习       409790    人
  • 解答问题       4340    个

Java中你必须懂得常用技能,不容错过的精彩,快来加入吧

进入课程

打卡-交作业

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信