Wednesday, June 15, 2016

SOLUTION OF URI 1059


//  1059  // (Mahmud_Jamil) BRUR
// 
  question of  1059 Even Numbers



#include <stdio.h>
int main()
{
    int i=2;
    while(i<=100) {
        printf("%d\n",i);
        i=i+2;
    }

    return 0;
}



0 comments:

Post a Comment