Developpement/23DEV1.1/TPS2/TP01/Exception/Capture/Capture.java

20 lines
280 B
Java
Raw Permalink Normal View History

2024-12-09 11:53:11 +01:00
public class Capture
{
public int CalculTest(int a)
{
int res = a / 0;
return res;
}
public static void main(String[] args)
{
try
{
int arf = 15;
System.out.println(CalculTest(arf));
}
catch(ArithmeticException ae)
{
System.out.println(0);
}
}
}