add chapter 11

This commit is contained in:
Rémi Heredero 2022-03-07 07:37:55 +01:00
parent 906640c2a7
commit aebaffc30d
8 changed files with 17 additions and 1 deletions

Binary file not shown.

View File

@ -1,6 +1,6 @@
package C10_Tri_et_complexite.C102_Complexite_algorithmique;
public class App {
public class Poignee_de_main {
public static void main(String[] args) throws Exception {
System.out.println("Hello, World!");
}

Binary file not shown.

View File

@ -0,0 +1,7 @@
package C11_Flux_de_donnees.C11a_Les_exceptions;
public class App {
public static void main(String[] args) throws Exception {
System.out.println("Hello, World!");
}
}

View File

@ -0,0 +1,9 @@
package C11_Flux_de_donnees.C11b_Lire_et_ecrire_des_fichiers;
// Combien de poignées de mains vont être échangée pour n personne ?
public class App {
public static void main(String[] args) throws Exception {
System.out.println("Hello, World!");
}
}