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