package xuexi;import java.util.Scanner;public class Book { public static void main(String[] args) { Book sc=new Book(); sc.manage(); }? ? public void manage()? ? {? ? String books[]={"數(shù)據(jù)結(jié)構(gòu)","高數(shù)"};? ? try{System.out.println("輸入命令:1-按照名稱查找圖書;2-按照序號(hào)查找圖書"); ? ? ? ? ? ? ? ?//N? ? Scanner input=new Scanner(System.in);? ? int ?kll=input.nextInt();? ? if(kll==1)? ? {? ? System.out.println("輸入圖書名稱");? ? String name=input.next();? ? if(name.equals("高數(shù)")||name.equals("數(shù)據(jù)結(jié)構(gòu)"))? ? {System.out.println("book"+name);? ? }? ? else{? ? System.out.println("圖書不存在!");? ? ? ? ?}? ? //我想在這里輸出圖書不存在這句話之后跳回標(biāo)注N的那一行,怎么做到呢,百度了下if的跳回,說是用continue但是放了幾個(gè)地方都不對(duì)。。。? ? }? ? if(kll==2)? ? {? ? System.out.println("輸入圖書序號(hào):");? ? int nums=input.nextInt();? ? if(nums==1)? ? {? ? System.out.println("book:"+books[0]);?? ? }? ? if(nums==2)? ? {? ? System.out.println("book:"+books[1]);? ? }? ? else{? ? System.out.println("圖書不存在!");? ? }? ? }? ? }? ? catch(Exception e){? ? System.out.println("命令輸入錯(cuò)誤!請(qǐng)根據(jù)提示輸入數(shù)字命令!");? ? }? ? ? ? ? ? }
關(guān)于循環(huán)怎么跳回
慕工程6005648
2016-11-07 12:07:30