기존/🏀JavaExcption

https://codepen.io/takapps/pen/zLENvg https://start0.tistory.com/98
java.lang.ArithmeticException: / by zero 에러 나는 원인\ (변경전) 정수를 0으로 나누면 예외처리 발생 예를 들어 밑에서 su = 0 ; 인데 180/0 = 0 ; 의 값이 나오니 이런표시가 뜬다.. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 public class asdadasd { public static void main(String[] args) { Integer math = 100; Integer la = 80; Integer av = 0; Integer su = 0; try { av = (math+la)/su; System.out.println("av =" +av); } catch (E..
조각남자
'기존/🏀JavaExcption' 카테고리의 글 목록