SOLUTION OF URI 1073 URI SOLUTIONS No comments // 1073 (Mahmud_Jamil) BRUR // Even Square #include <stdio.h>int main(){ int n, i; scanf("%d",&n); for (i=1;i<=n;i++){ if (i%2==0) printf("%d^2 = %d\n", i, i * i); } return 0;} Share This: Facebook Twitter Google+ Stumble Digg Email ThisBlogThis!Share to XShare to Facebook Related Posts: SOLUTION OF URI 1016 // question of uri 1016 Distance // 1016 (Mahmud_Jamil) BRUR … Read MoreSOLUTION OF URI 1014 // question of uri 1014 Consumption // 1014 (Mahmud_Jamil) BRUR #inc… Read MoreSOLUTION OF URI 1017 // question of uri 1017 Fuel Spent //1017 (Mahmud_Jamil) BRU… Read MoreSOLUTION OF URI 1015 // question of uri 1015 Distance Between Two Points // 1015 (Mahmud_Jam… Read MoreSOLUTION OF URI 1013 // question of uri 1013 The Greatest // 1013 (Mahmud_Jamil) BRUR #in… Read More
0 comments:
Post a Comment