接受用户输入的数据
Scanner scanner=new Scanner(System.in);
scanner.nextLine();回车为结束符之前的字符
scanner.next();空白结束符之前的字符
使用IO流最好关掉
关闭:scanner.close(
2024-03-26 18:56:10
接受用户输入的数据
Scanner scanner=new Scanner(System.in);
scanner.nextLine();回车为结束符之前的字符
scanner.next();空白结束符之前的字符
使用IO流最好关掉
关闭:scanner.close(
下一篇:Scanner对象的两种接收方法