Ajout des travaux effectuer

This commit is contained in:
2024-12-09 11:53:11 +01:00
parent 05fac8d3ae
commit c4e97e13da
558 changed files with 67900 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
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);
}
}
}