提示:您可在线编辑运行本教程的实例 - 运行实例,去试试!
使用Varargs方法计算某些指定整数的最大值
public class Main { public static int max(int n1, int n2, int... num) { /** 来自 时 代 J a v a - N o w J a v a . c o m**/ // Initialize max to the maximu of n1 and n2 int max = (n1 > n2 ? n1 : n2); for(int i = 0; i < num.length; i++) { if (num[i] > max) { max = num[i]; } } return max; } public static void main(String[] args) { System.out.println("max(7, 9) = " + Main.max(7, 9)); System.out.println(