定义三个重载方法max(),第一个方法求两个int值中的最大值,第二个方法求两个double值中的最大值,第三个方法求三个double值中的最大值,并分别调用三个方法。

重载方法练习2:定义三个重载方法max(),第一个方法求两个int值中的最大值,第二个方法求两个double值中的最大值,第三个方法求三个double值中的最大值,并分别调用三个方法。

方法1:
public class Circle {
	public void max(int x,int y) {//求两个int值中的最大值
		if(x > y) {
			System.out.println("最大值是:" + x);
		}
		else {
			System.out.println("最大值是:" + y);
		}
	}
	public void max(double x,double y) {//求两个double值中的最大值
		if(x > y) {
			System.out.println("最大值是:" + x);
		}
		else {
			System.out.println("最大值是:" + y);
		}
	}
	public void max(double x,double y,double z) {//求三个double值中的最大值
		if(x > y) {
			if(x > z) {
				System.out.println("最大值是:" + x);
			}
			else if(y > z) {
				System.out.println("最大值是:" + y);
			}
			else {
				System.out.println("最大值是:" + z);
			}
		}
		if(x > z) {
			if(x > y) {
				System.out.println("最大值是:" + x);
			}
			else if(y > z) {
				System.out.println("最大值是:" + y);
			}
			else {
				System.out.println("最大值是:" + z);
			}
		}
		if(y > z) {
			if(y > x) {
				System.out.println("最大值是:" + y);
			}
			else if(z > x) {
				System.out.println("最大值是:" + z);
			}
			else {
				System.out.println("最大值是:" + x);
			}
		}
	}
	
	public static void main(String[] args) {//调用三个方法
		Circle cir = new Circle();
		cir.max(4, 999);
		cir.max(3.4444, 3.4421);
		cir.max(2.33, 4.33, 3.9098);
	}
}
方法2(利用三目运算符):
public class Circle {
	public void max(int x,int y) {//求两个int值中的最大值
		System.out.println("最大值是:" + ((x>y) ? x:y));
	}
	public void max(double x,double y) {//求两个double值中的最大值
		System.out.println("最大值是:" + ((x>y) ? x:y));
	}
	public void max(double x,double y,double z) {//求三个double值中的最大值
		System.out.println("最大值是:" + ((x>y ? x:y) > z ? (x>y ? x:y):z));
		
	}
	
	public static void main(String[] args) {//调用三个方法
		Circle cir = new Circle();
		cir.max(4, 999);
		cir.max(3.4444, 3.4421);
		cir.max(2.33, 4.33, 3.9098);
	}
}
评论 5
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值