Thursday, January 28, 2016

URI 1059 - Even Numbers

1
2
3
4
5
6
7
8
9
10
11
#include <stdio.h>
  
int main() {
  
    int i;
    for(i=2; i<=100; i=i+2){
        
            printf("%d\n",i);
        }
    return 0;
}

No comments:

Post a Comment

Thank you for commenting. Please wait for response :)