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);
}
}
}

View File

@@ -0,0 +1,6 @@
public class Incomplet {
public static void main(String[] args) {
byte[] txt = {0x48, 0x65, 0x6C, 0x6C, 0x6F, 0x0D, 0x0A};
System.out.write(txt);
}
}

Binary file not shown.

View File

@@ -0,0 +1,10 @@
public class Test1
{
public static void main(String[] args)
{
int[] tab = {0,1,2,3,4,5,6,7,8,9};
int i = 11;
int res = tab[i];
System.out.println(res);
}
}

Binary file not shown.

View File

@@ -0,0 +1,8 @@
public class Test2
{
public static void main(String[] args)
{
Object res = null;
System.out.println(res.toString());
}
}

Binary file not shown.

View File

@@ -0,0 +1,9 @@
public class Test3
{
public static void main(String[] args)
{
String i = "ahahahahahahah";
int res = Integer.parseInt(i);
System.out.println(res);
}
}

View File

@@ -0,0 +1,16 @@
public class Test4
{
public static void main(String[] args)
{
try
{
int res;
System.out.println(res);
}
catch(RuntimeException re)
{
System.out.println(0);
}
}
}

Binary file not shown.

View File

@@ -0,0 +1,8 @@
public class Test5
{
public static void main(String[] args)
{
int res = 15 / 0;
System.out.println(res);
}
}