Advertisement
Umme_nishat

problem-4

Jun 25th, 2019
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.14 KB | None | 0 0
  1. #include <stdio.h>
  2. int main()
  3. {
  4.     int i;
  5.     scanf ("%d",&i);
  6.     for(i=2;i<=100;i+=2){
  7.         printf("%d\n",i);
  8.     }
  9.     return 0;
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement