使用scanner获取屏幕输入
1、定义scanner,能够监听屏幕输入
Scanner sc = new Scanner(System.in);
2、通过nextInt获取输入整数
int i = sc.nextInt();
补充:
new Scanner(System.in)创建一个Scanner,控制台会一直等待输入,输入信息后,通过nextInt获取输入的整数值
试试看用string操作,如果确定接收到的一定是整数,再用Integer去转换
System.in.read()循环读取字节加起来就是输入的字符串
Scanner sn=new Scanner(System.in);
int a=sn.nextInt();
Scanner sc = new Scanner(System.in);
int i = sc.nextInt();
用这个试试