单击此处编辑母版标题样式6 Java异常处理教师:苏秀芝主要内容:1异常的基本概念2掌握try-catch-finally语句的用法3掌握throwthrows关键字的用法public class MathEx {public static void main(String[] args) {int a=2int b=1int c=0try{c=ab}catch(ArithmeticExcept