数据输入

Scanner使用的基本步骤

  1. 导包
1
import java.util.Scanner;
  1. 创建对象
1
2
Scanner sc = new Scanner(System.in);
//只有sc是变量名可以变其他的都不许变
  1. 接收数据
1
2
int i = sc.nextInt();
//只有i是变量名
  1. 案例
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import java.util.Scanner;
public class shujvshuru {
public static void main(String[] args) {
Scanner a = new Scanner(System.in);
//只有sc是变量名可以变其他的都不许变
System.out.println("请输入第一个人的高度");
int i1 = a.nextInt();
System.out.println("请输入第一个人的高度");
int i2 = a.nextInt();
System.out.println("请输入第一个人的高度");
int i3 = a.nextInt();
//只有i是变量名
int max = i1 > i2 ? i1 : i2;
int max1 = max > i3 ? max : i3;
System.out.println("最大值为"+max1);
}
}