Skip to content
Snippets Groups Projects
Commit 11f09901 authored by orestis.malaspin's avatar orestis.malaspin
Browse files

Merge branch 'yassin.elhakoun-master-patch-66577' into 'master'

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

See merge request !12
parents 2b73795f ec96f74b
No related branches found
No related tags found
1 merge request!12Update boucles_conditions.md (boucle infinie lorsqu'on arrivait à i==3)
Pipeline #29173 passed
......@@ -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.
Finish editing this message first!
Please register or to comment