Advertisement
Guest User

Untitled

a guest
Dec 8th, 2019
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.11 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3.  
  4. int main()
  5. {
  6. int a=0,b=100;
  7.  
  8. for(;a<=b;a++)
  9.  
  10. {
  11. if(a%2==0) printf("%d\n",a);
  12. }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement