今日呈上一个三元运算符的一个小Demo~
小编开始上代码啦
package com.tianchen.test;
import java.util.Scanner;
public class Demo02 {
public static void main(String[] args) {
//提示语
System.out.println("请输入成绩:");
//创建文本扫描器
Scanner sc = new Scanner(System.in);
//获取输入值
int score = sc.nextInt();
//三元运算符 x ? y:z
String type = score > 60 ?"及格":"不及格";
//打印输出结果
System.out.println(type);
}
}
运行效果:
到这里就结束啦~