题目内容
把求n!的程序补充完整(注:n!=n×(n-1)×…×2×1).
n= (“n=”);
i=1;
s=1;
i<=n
s=si;
i=i+1;
s
input while end
把下面求n!( n!= n×(n-1)×……×3×2×1 )的程序补充完整