public class helloworld {
public static void main(String[] args) {
System.out.println("hello,world!");
}
}
三元运算符:
false
public class demo01 {
public static void main(String[] args) {
// x ? y : z
//如果x==true, 则结果为z
int score = 80;
String type = score < 60 ? "不及格" : "及格";
System.out.println(type);
}
}
true
public class demo01 {
public static void main(String[] args) {
// x ? y : z
//如果x==true, 则结果为z
int score = 50;
String type = score < 60 ? "不及格" : "及格";
System.out.println(type);
}
}