摘要: //try-catch语块处理异常代码public class H { public static void main(String[] args) { try{ int a=14; int b=0; a=a/b; System.out.println("a的值为 :"+a); }catch(Exc 阅读全文
posted @ 2019-04-11 21:43 刘煜炀 阅读(69) 评论(0) 推荐(0) 编辑