mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-03 10:49:58 +00:00
21 lines
250 B
Java
21 lines
250 B
Java
public class Divide_2
|
|
{
|
|
static void poo()
|
|
{
|
|
int n = 4/0;
|
|
}
|
|
public static void main(String[] argv)
|
|
{
|
|
try
|
|
{
|
|
poo();
|
|
}
|
|
catch (ArithmeticException _)
|
|
{
|
|
return;
|
|
}
|
|
|
|
throw new RuntimeException();
|
|
}
|
|
}
|