用方法重载实现,求两个数中最大值和三个数中最大值的方法
时间: 2023-08-29 17:08:36 浏览: 437
以下程序求两个数的大者请填空。-C++程序设计
下面是 Java 代码实现:
```
public class MaxValue {
public static void main(String[] args) {
int a = 5, b = 10, c = 15;
int max1 = max(a, b);
int max2 = max(a, b, c);
System.out.println("两个数中的最大值为:" + max1);
System.out.println("三个数中的最大值为:" + max2);
}
public static int max(int a, int b) {
return a > b ? a : b;
}
public static int max(int a, int b, int c) {
int temp = a > b ? a : b;
return temp > c ? temp : c;
}
}
```
运行结果:
```
两个数中的最大值为:10
三个数中的最大值为:15
```
阅读全文