using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Exemples6SurLesFors { class Program { static void Main(string[] args) {/*Énoncé: afficher les chiffres paire entre 0 et 10*/ const int tour = 11; for (int i = 0; i < tour; i++) { if ((i%2)==0) { Console.Write(i+" "); } } Console.Read(); } } }