package test;
public class Test_ArithmeticException{
 public static void main(String[] args) {
  try{
   int b=0;
   int a=33/b;
  }
  catch(ArithmeticException e){
   e.printStackTrace();
  }
  System.out.println("Hello!");
 }
}
	
posted on 2009-03-27 11:18 
鹏凌 阅读(206) 
评论(0)  编辑  收藏