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
0 comments:
Post a Comment