Scanner
Posted bokedizhi97
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Scanner相关的知识,希望对你有一定的参考价值。
1、导包
import java.util.Scanner;
2、创建Scanner 对象
Scanner sc = new Scanner(System.in);
3、使用:
int a=sc.nextInt();
double b=sc.nextDouble();
String name=sc.next();
4、案例
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
System.out.print("请输入姓名:");
String name=sc.next();
System.out.print("请输入年龄:");
int age = sc.nextInt();
System.out.print("请输入分数:");
double score = sc.nextDouble();
System.out.println("姓名:"+name+" ,年龄:"+age+",分数:"+score);
}
以上是关于Scanner的主要内容,如果未能解决你的问题,请参考以下文章