数据输入
1. 数据输入
1.1 数据输入概述
1.2 Scanner使用的基本步骤
(1)导包
import java.util.Scanner;
(导包的动作必须出现在类定义的上边)
(2)创建对象
Scanner sc = new Scanner(Scanner.in);
(上面这个格式里面,只有sc是变量名,可以变,其他的不允许变)
(3)接收数据
int i = sc.nextInt();
(上面这个格式里面,只有i是变量名,可以变,其他的都不允许变)
importjava.util.Scanner; publicclassScannerTest{ publicstaticvoidmain(String[] args) { Scannersc=newScanner(System.in); System.out.println("请输入第一个和尚的身高:"); intheight1=sc.nextInt(); System.out.println("请输入第二个和尚的身高:"); intheight2=sc.nextInt(); System.out.println("请输入第三个和尚的身高:"); intheight3=sc.nextInt(); inttempHeight=height1>height2?height1 : height2; intmaxHeight=tempHeight>height3?tempHeight : height3; System.out.println("这三个和尚中身高最高的是:"+maxHeight+"cm"); } }
编译运行结果:
请输入第一个和尚的身高:150请输入第二个和尚的身高:180请输入第三个和尚的身高:165这三个和尚中身高最高的是:180cm