Skip to content
Snippets Groups Projects
Commit ec96f74b authored by yassin.elhakoun's avatar yassin.elhakoun
Browse files

Update boucles_conditions.md (boucle infinie lorsqu'on arrivait à i==3)

parent 2b73795f
Branches
No related tags found
No related merge requests found
Pipeline #29115 failed
......@@ -86,6 +86,7 @@ if (x) { // si x s'évalue à `vrai`
int i = 0;
while (i < 10) {
if (i == 3) {
i += 1;
continue;
}
printf("%d\n", i);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment