using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Exemple5._1While { class Program { static void Main(string[] args) { int nombre; Console.Write("Donnez-moi le nombre : "); //Lécture du nombre nombre = int.Parse(Console.ReadLine()); while (nombre!=0) { Console.Write("Le carré : " + nombre * nombre + "\n"); Console.Write("Donnez-moi le nombre : "); //Lécture du nombre nombre = int.Parse(Console.ReadLine()); } Console.Read(); } } }