包的本质就是文件夹
package com.kuang.operator;
//import com.kuang.base.Demo08 包名不要重复,否则引用的时候会报错
//import com.kuang.base.* *通配符,当要引用的比较多时,直接用*
import java.util.Date;
//三元运算符
public class Demo08 {
public static void main(String[] args) {
// x ? y : z
//如果x==true,则结果为有,否则结果为z
int score=60;
String type= score<60?"不及格":"及格";//必须掌握
System.out.println(type);
}
}