Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- int main()
- {
- //Area de declaração de variáveis
- int i;
- //Lógica do programa
- for(i = 0; i < 10; i++)
- {
- if (i > 4)
- {
- i = i + 4;
- }
- printf("%i\n",i);
- }
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment