#include<stdio.h> int main() { int i,n; long int t=1; scanf("%d",&n); for(i=1;i<=n;i++){ t=t*i; } printf("%ld",t); }
[此贴子已经被作者于2016-3-25 10:27编辑过]