Java

Java,第1张

public class Demo1 {
    public static void main(String[] args) {

        int max = max(10, 20);
        System.out.println(max);
    }

    //比大小
    public static int max(int num1, int num2){
        int result = 0;
        if (num1 == num2){
            System.out.println("num1 == num2");
            return 0;  //终止方法
        }

        if (num1 > num2){
            result = num1;
        }
        else {
            result = num2;
        }
        return result;
    }
}

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

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

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

发表评论

登录后才能评论

评论列表(0条)

保存