Advertisement
Guest User

Untitled

a guest
Feb 18th, 2018
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.19 KB | None | 0 0
  1. #include<stdio.h>
  2.  
  3. int main()
  4.  
  5. {
  6.  
  7. int a,i;
  8.  
  9. printf("Enter an integer value:");
  10.  
  11. scanf("%d",&a);
  12.  
  13.  
  14.  
  15. for(i=1;i<=a;i++){
  16.  
  17.     if(i%2==0)printf("%d\n",i);
  18. }
  19.  
  20.  return 0;
  21.  
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement