package day16; public class zuidazhi { public static void main(String[] args) { Count04 c=new Count04(); int maxNum=c.max(5,3,7,9,15); System.out.println("最大值:"+maxNum); } } class Count04{ public int max(int num,int...other){ //num =5, other[]={3,7,9} //默认第一个传递的数字 是最大值 int max=num; for (int i=0; i< other.length;i++){ //暂时的最大值 挨个跟other重的数自进行比较 if (other[i]>max){ max=other[i]; } } return max; }}
java
最新推荐文章于 2024-11-15 18:38:47 发布