java写好的类Scanner,用于键盘录入.
步骤一:导包----找到Scanner类在哪里
improt java.until.Scanner;
步骤二:创建对象----可以使用Scanner类
Scanner sc=new Scanner(System.in); //只有sc是变量,其他都不能变
步骤三:接收数据----可以正式使用
int i=sc.nextInt(); //只有i是变量,其他都不能变
improt java.until.Scanner;
Scanner sc=new Scanner(System.in); //只有sc是变量,其他都不能变
int i=sc.nextInt(); //只有i是变量,其他都不能变