--------------------------------------------------------------------------------import java.util,Scanner
public class scanner03 {
public static void main(String args[]) {
//输入多少个数字,求其和和平均数,每一个数字用回车确认,通过输入非数字来结束输入,并输出结果。
Scanner scanner=new Scanner(System.in);
//和
double sum=0;
int m=0;
//通过判断是否还有输入,并在里面对每一次进行求和统计
while(scanner.hasNextDouble()) {
double x=scanner.nextDouble();
m=m+1;
sum=sum+x;
System.out.println("你输入的是第"+m+"个数字,当前结果是:"+sum);
}
System.out.println(m+"个数的和为:"+sum);
System.out.println(m+"个数的和平均值:"+(sum/m));
}
scanner close();
}
10
你输入的是第1个数字,当前结果是:10.0
204
你输入的是第2个数字,当前结果是:214.0
40
你输入的是第3个数字,当前结果是:254.0
78
你输入的是第4个数字,当前结果是:332.0
8
你输入的是第5个数字,当前结果是:340.0
y
5个数的和为:340.0
5个数的和平均值:68.0
------------------------------------------------------------------------------------------------------------
public class scanner02 {
public static void main(String args[]) {
Scanner scanner=new Scanner(System.in);
System.out.println("使用nextLine接收:");
//判断用户有没有输入字符串
if(scanner.hasNextLine());{
String str=scanner.nextLine();
System.out.println("输出内容为:"+str);
}
scanner.close();
}
}
使用nextLine接收:
hello world
输出内容为:hello world
------------------------------------------------------------------------------------------------------------
public class scanner01 {
public static void main(String args[]) {
//创建一个扫描对象,用于接收键盘数据
Scanner scanner=new Scanner(System.in);
System.out.println("使用next接收:");
//判断用户有没有输入字符串
if(scanner.hasNext());{
//使用next方式接收
String str=scanner.next();
System.out.println("输出内容为:"+str);
}
//凡是iO流的类如果不关闭会一直占用社会资源
scanner.close();
}
}
使用next接收:
hello world
输出内容为:hello
scanner用法
1.基本语法
Scanner s=new Scanner (System.in);
2.
通过Scanner类的next()与nextLine()方法获取输入字符串,在读取前我们一般需要使用hasNext()与hasNextLine()判断是否还有输入的数据。