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
No related branches found
No related tags found
1 merge request!12Update boucles_conditions.md (boucle infinie lorsqu'on arrivait à i==3)
......@@ -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