This commit is contained in:
2023-04-04 14:03:16 +02:00
parent 7021891e9c
commit e32d4de827
111 changed files with 1928 additions and 6 deletions

Binary file not shown.

View File

@@ -0,0 +1,14 @@
public class Capture{
public static void pignouf(){
int giorno = 8;
giorno= giorno/0;
}
public static void main(String[] args){
try{
pignouf();
}
catch(ArithmeticException e){
System.err.println("Mec t'a pas le droit de diviser par 0 t'es un fou furieux jte report pd");
}
}
}