java126-throw向上抛出异常

2022/6/26 1:24:31

本文主要是介绍java126-throw向上抛出异常,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!


//throw抛出异常
import java.util.Scanner;
public class test66{
    static class A {
        void d() throws Exception {
            int a, b, c;
            Scanner in = new Scanner(System.in);
            System.out.println("亲输入a的值");
            a = in.nextInt();
            System.out.println("请输入b的值");
            b = in.nextInt();
            c = a % b;
            System.out.println("余数为" + c);
        }
    }
    public static void main(String[] args) throws Exception{
        A aa=new A();
 
        //try{
            aa.d();
        //}catch (Exception e){
            System.out.println("输入有误");
        //}
    }
}
运行结果

 



这篇关于java126-throw向上抛出异常的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程