Prof_Carvalho

Untitled

Sep 5th, 2019
266
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.25 KB | None | 0 0
  1. #include <stdio.h>
  2. int main()
  3. {
  4.     //Area de declaração de variáveis
  5.     int i;
  6.     //Lógica do programa
  7.     for(i = 0; i < 10; i++)
  8.     {
  9.         if (i > 4)
  10.         {
  11.             i = i + 4;            
  12.         }      
  13.         printf("%i\n",i);
  14.     }
  15.     return 0;
  16. }
Advertisement
Add Comment
Please, Sign In to add comment