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

if语句的嵌套使用之获取三个数据的最大值

时间:2019-07-08 19:45:37      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:if语句   system   rgs   语句   sys   out   info   bsp   结果   

获取三个数据的最大值:

class Hello2 {
    public static void main(String[] args) {
        int a = 10;
        int b = 20;
        int c = 30;
        int max;
        if (a > b){
            if (a > c)
            {
                max = a;
            }else {
                max = c;
            }
        }else {
            if (b < c)
            {
                max = c;
            }else {
                max = b;
            }
        }
        System.out.println("max = " + max);
    }
}

结果:

技术图片

 

if语句的嵌套使用之获取三个数据的最大值

标签:if语句   system   rgs   语句   sys   out   info   bsp   结果   

原文地址:https://www.cnblogs.com/Wangzui1127/p/11152976.html

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