package javaexception;
class App {
public static void main(String args[]) {
a();
}
static void a() {
b();
}
static void b() {
c();
}
static void c() {
d();
}
static void d() {
int i = 1;
int j = 0;
System.out.println(i / j);
}
}
is my program...
java.lang.ArithmeticException: / by zero
at javaexception.App.d(App.java:36)
at javaexception.App.c(App.java:29)
at javaexception.App.b(App.java:24)
at javaexception.App.a(App.java:18)
at javaexception.App.main(App.java:13)
is the exception error...
what is my doubt is ..
App is my program name,,
(App.java:29)
(App.java:24)
(App.java:18)
(App.java:13)
what does the numbers 18,13 etc means
2006-07-17
20:26:44
·
4 answers
·
asked by
Anonymous
in
Computers & Internet
➔ Programming & Design