diff --git a/TD1/td1.cs b/TD1/td1.cs index ee09564..b7fd528 100644 --- a/TD1/td1.cs +++ b/TD1/td1.cs @@ -22,8 +22,18 @@ namespace Programmation_objet_TLESIO21.TD1 { Console.WriteLine("Après inversion, a = " + a + " & b = " + b); } + private static void Excercice2() { + Console.WriteLine("Veuillez saisir un texte : "); + String s = Console.ReadLine(); + Console.WriteLine("Vous avez saisi : «" + s + "»"); + } + + private static void TestExcercice2() { + Excercice2(); + } + public static void Launch() { - TestExcercice1(); + TestExcercice2(); }