mdnurnobihosen

Assignment6

Feb 24th, 2019
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.20 KB | None | 0 0
  1. #include<stdio.h>
  2. int main()
  3. {
  4.     int i,n,sum=1;
  5.     printf("Input:");
  6.     scanf("%d",&n);
  7.     for(i=1; i<=n; i++)
  8.  
  9.         sum=sum*i;
  10.     printf("Output: %d\n",sum);
  11.     return 0;
  12. }
Add Comment
Please, Sign In to add comment