Advertisement
Guest User

Untitled

a guest
Nov 12th, 2019
80
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. int main()
  3.   {
  4.       int n;
  5.       for(n=1;n<=100;n++)
  6.       {
  7.           if(n%2==0)
  8.             printf("%d\n",n);
  9.       }
  10.        return 0;
  11.   }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement