public class TestInput { /* * 实现功能:从控制台输入一个整数,然后打印出来。 * 当输入字符时会提示输入有误,接着提示:请输入一个整数 */ public static void main(String[] args) { Scanner sc = new Scanner(System.in); int num = 0; while(true){ System.out.println("请输入一个整数:"); try { num = sc.nextInt(); sc.close(); break; } catch (Exception e) { System.out.println("输入有误!!!"); } } System.out.println(num); }}
添加回答
举报
0/150
提交
取消