728x90 자바 예외 처리1 [JAVA] ch08-02. 예외 처리 2 public class Ex02 { public static void main(String[] args) { int number = 100; int result = 0; for(int i = 0 ; i < 10 ; i++) { result = number / (int)(Math.random() * 10); //분모가 0이 되면 디버그가 생김 System.out.println(result); } } } JAVA/예제 2017. 8. 22. 이전 1 다음 728x90