somme = 0; i = 1; /* initialisation */ while (i<=10) /* condition de bouclage */ { somme += i; /* instruction */ i++; /* réinitialisation */ }