Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- #include <stdlib.h>
- // Continue
- // Autor: Alexandre Campos
- int main()
- {
- int maximo = 20;
- for (int i=0; i<=maximo; i++){
- if (i == 18){
- // Sai momentaneamente do laco
- continue;
- }
- printf("Numero atual: %d\n", i);
- }
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment