三元表達式「最大數」

package com.cetc55;

public class Dome1 {
    public static void main(String[] args) {
        System.out.println("hallo world");
        int a = 100;
        int b = 80;
        int c = 120;
        int d = a > b ? (a > c ? a : c) : (b > c ? b : c);
        System.out.println(d);
相關文章
相關標籤/搜索