1. 程式人生 > >求三個數中的最大值

求三個數中的最大值

else if temp system -c sys 三元運算 最大 pri lse

三個數a b c

        int a = 10;
        int b = 100;
        int c = 1000;
第一種方式if嵌套
int max = 0;
        if (a > b) {
            if (a > c) {
                max = a;
            } else {
                max = c;
            }
        } else if (b > a) {
            if (b > c) {
                max = b;
            } else {
                max = c;
            }
        } else if (c > a) {
            if (c > b) {
                max = c;
            } else {
                max = b;
            }
        }
第二種方式三元運算符
        int temp = a>b?a:b;
        int max = temp>c?temp:c;
        System.out.println(max);

求三個數中的最大值