SOLUTION OF URI 1078 URI SOLUTIONS No comments // 1078 (Mahmud_Jamil) BRUR // Multiplication Table #include<stdio.h>int main(){ int i,n; scanf("%d",&n); for(i=1;i<=10;i++) printf("%d x %d = %d\n",i,n,i*n); return 0;} Share This: Facebook Twitter Google+ Stumble Digg Email ThisBlogThis!Share to XShare to Facebook
0 comments:
Post a Comment