int m = n;while (m > 0){t *= m; m--; }s += t;t = 1;
试一下,不知道代码行数有没有要求
t*=ns+=t
两个填空内容为:t*=is+=t
答案:t=t*ns=s+t
t = t * n; s = s + t;