Skip to content
Snippets Groups Projects

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

1 unresolved thread
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
@@ -85,11 +85,11 @@ if (x) { // si x s'évalue à `vrai`
```C
int i = 0;
while (i < 10) {
i += 1;
if (i == 3) {
continue;
}
printf("%d\n", i);
i += 1;
}
```
Loading