using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Exercice5._7 { class Program { static void Main(string[] args) { /* Énoncé: * Écrire les carrés des nombres entiers de 7 à 20. */ int carre; for (int i = 7; i < 21; i++) { carre = i * i; Console.WriteLine("Le carré de "+i+" est = "+carre); } Console.Read(); } } }