摘要: scanner对象 next(): 1、一定要读取到有效字符后才可以结束输入。 2、对输入有效字符之前遇到的空白,next()方法会自动将其去掉。 3、只有输入有效字符后才将其后面输入的空白作为分隔符或者结束符。 4、next()不能得到带有空格的字符串。 nextLine(): 1、以Enter为 阅读全文
posted @ 2021-01-05 21:36 liuyunche 阅读(80) 评论(0) 推荐(0) 编辑
摘要: package com.lyc;import java.util.Scanner;public class Demo02 { public static void main(String[] args) { //创建一个扫描对象,用于接收键盘数据 Scanner scanner = new Scan 阅读全文
posted @ 2021-01-05 21:35 liuyunche 阅读(63) 评论(0) 推荐(0) 编辑
摘要: package com.lyc;import java.util.Scanner;public class Demo01 { public static void main(String[] args) { //创建一个扫描对象,用于接收键盘数据 Scanner scanner = new Scan 阅读全文
posted @ 2021-01-05 21:28 liuyunche 阅读(66) 评论(0) 推荐(0) 编辑