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

2.37 选择结构if语句的嵌套使用

时间:2015-08-26 09:36:18      阅读:250      评论:0      收藏:0      [点我收藏+]

标签:

/*
获取三个数据中的最大值

由此案例主要是为了讲解if语句是可以嵌套使用的。而且是可以任意的嵌套。
*/
class IfTest4 {
	public static void main(String[] args) {
		int a = 10;
		int b = 30;
		int c = 20;

		// 三元实现
		// int temp = (a>b)? a: b;
		// int max = (temp>c)? temp: c;
		// System.out.println("max:"+max);
		// System.out.println("--------");

		// 用if语句实现
		int max;
		if (a > b) {
			if (a > c) {
				max = a;
			} else {
				max = c;
			}
		} else {
			if (b > c) {
				max = b;
			} else {
				max = c;
			}
		}
		System.out.println("max:" + max);
	}
}


2.37 选择结构if语句的嵌套使用

标签:

原文地址:http://my.oschina.net/u/2001589/blog/497121

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