#include <stdio.h>
int main()
{ int t=1, i= 5;
for(;i>=2;i--) t*=i; printf("%d\n", t ); return 0;
}
求 5! = 120
5! = 120