三項演算子
三項演算子はif文の簡略式になります。
プログラム例&実行結果
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
package step14; public class Test04 { public static void main(String[] args) { int x = 80; if(x>=80) { System.out.println("合格"); }else { System.out.println("不合格"); } String str = x>=80 ? "合格":"不合格"; System.out.println(str); } } |
1 2 |
合格 合格 |