标签:new 运算符 字符串 void 成员 使用步骤 基本类型 引入 NPU
需求:
import java.util.Scanner; public class ScannerMax { public static void main(String[] args) { // 创建对象,备注:构造方法参数System.in 系统输入指的是通过键盘录入数据。 Scanner scanner = new Scanner(System.in); //3. 接收数据 System.out.println("请录入第一个整数:"); int a = scanner.nextInt(); //3. 接收数据 System.out.println("请录第二个整数:"); int b = scanner.nextInt(); //3. 接收数据 System.out.println("请录入第三个整数:"); int c = scanner.nextInt(); //三目运算符 求最值 int temp = a > b ? a : b; int max = temp > c ? temp : c; System.out.println("最大值是" + max); } }
执行结果
标签:new 运算符 字符串 void 成员 使用步骤 基本类型 引入 NPU
原文地址:https://www.cnblogs.com/wurengen/p/10891688.html