码迷,mamicode.com
首页 > 其他好文 > 详细

求三个数中的最大值

时间:2018-12-31 17:24:05      阅读:179      评论:0      收藏:0      [点我收藏+]

标签:temp   个数   运算   pre   三元运算符   print   运算符   方式   三元运算   

三个数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);

求三个数中的最大值

标签:temp   个数   运算   pre   三元运算符   print   运算符   方式   三元运算   

原文地址:https://www.cnblogs.com/fengxia/p/10202317.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!