美文网首页
小学生都笑哭了:除数不能是0!!!

小学生都笑哭了:除数不能是0!!!

作者: 哈迪斯Java | 来源:发表于2023-05-28 07:26 被阅读0次

    public class Brunt {
    public static int count(int m,int n){
    return m * n;
    }
    public static void main(String args[]) throws Exception{
    try{
    int result = count(12315,57876876);
    System.out.println(result);
    }
    catch (Exception e) {
    e.printStackTrace();
    }

    }
    }

    public class Division { // 创建一个Division类
    static int num1 = 25; // 初始化“被除数”
    static int num2 = 0; // 初始化“除数”
    static int result; // 声明“结果”

    public static void division() throws ArithmeticException {
        result = num1 / num2; // 为“结果”赋值
    }
    
    public static void main(String[] args) {
        try { // try块
            division();
        } catch (ArithmeticException ae) { // catch块
            System.out.println("小学生都笑哭了:除数不能是0!!!");
        }
    }
    

    }

    相关文章

      网友评论

          本文标题:小学生都笑哭了:除数不能是0!!!

          本文链接:https://www.haomeiwen.com/subject/zrvhddtx.html