要求用户输入数字,捕获并处理用户输入错误的异常
package com.hanqi.ec; import java.util.Scanner; public class Test2 { public static void main(String[] args) { // TODO 自动生成的方法存根 Scanner sc=new Scanner(System.in); System.out.println("请输入数字"); try { int a=sc.nextInt(); System.err.println("输入正确"); } catch(Exception ex) { System.out.println("您输入有误,必须是纯数字"); } } }