编写Java代码比较最大值

编写Java代码比较最大值,第1张

这是比较最大值Java代码

package Day15;

public class ChangeArgs_Exer01 {
    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) {
        //默认第一个最大值
        int max=num;
        for (int i = 0; i < other.length; i++) {
            if (other[i] >max) {
                max = other[i];
}
        }
        return max;

    }
}

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/3002316.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-09-27
下一篇 2022-09-27

发表评论

登录后才能评论

评论列表(0条)

保存