nikolas_serafini

Lista 3 - Exercício 3

Jun 11th, 2013
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.18 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3. int main()
  4. {
  5.     int i;
  6.    
  7.     for (i = 10; i <= 200; i++)
  8.     {
  9.         if (i%2 == 0)
  10.         {
  11.             printf("%d\n",i);
  12.         }
  13.     }
  14.     return 0;
  15. }
Advertisement
Add Comment
Please, Sign In to add comment