使用scanner获取屏幕输入
1、定义scanner,能够监听屏幕输入
Scanner sc = new Scanner(System.in);
2、通过nextInt获取输入整数
int i = sc.nextInt();
补充:
new Scanner(System.in)创建一个Scanner,控制台会一直等待输入,输入信息后,通过nextInt获取输入的整数值
使用scanner获取屏幕输入
1、定义scanner,能够监听屏幕输入
Scanner sc = new Scanner(System.in);
2、通过nextInt获取输入整数
int i = sc.nextInt();
补充:
new Scanner(System.in)创建一个Scanner,控制台会一直等待输入,输入信息后,通过nextInt获取输入的整数值