配置命令问题:

 

//    有6条配置命令,他们执行的结果分别为:
//    命令   执行
        
    
//    reset    reset what
           
    
//    reset board    board fault
    
//    board add    where to add
        
//    board delet    no board at all
        
//    reboot backplane    impossible
    //    backplane abort    install first
    //he he    unkown command

 

public static void main(String[] args) throws IOException {
		
	
		BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
		 
		HashMap hMap=new HashMap();
		 hMap.put("reset", "reset what");
		 hMap.put("reset board", "board fault");
		 hMap.put("board add", "where to add");
		 hMap.put("board delet", "no board at all");
		 hMap.put("reboot backplane", "impossible");
		 hMap.put("backplane abort", "install first"); 
		  String str =br.readLine();
		  while(str!=null) {
			  if (hMap.containsKey(str)) {
				
			}else{
				System.out.println("unkoown command");
			}
			  
			  str=br.readLine();
					  
		  }
	
	}
	

 

你可能感兴趣的:(配置命令问题:)