public class World { public static void main(String[] args) { int one = 20 ; String str=(one%2==0)?"one是偶数":"one是奇数"; System.out.println(str); } }
|开脑洞
?:是三目运算符 写的方式为 A?B:C; 首先判断A为真还是为假,如果A为真则执行B语句,为假则执行C语句