SOLUTION OF URI 1059 URI SOLUTIONS No comments // 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; } Share This: Facebook Twitter Google+ Stumble Digg Email ThisBlogThis!Share to XShare to Facebook
0 comments:
Post a Comment