用VB编程计算:1!-2!+3!-4!+…-10! 这个代码是什么?

2024-12-05 07:32:51
推荐回答(1个)
回答(1):

1!-2!+3!-4!+…-10!=1-2*1+3*2*1-4*3*2*1+…-10*9*8*7*6*5*4*3*2*1=?

看到规律没?

用两个嵌套的for

for i=1 to 10
s=0
for j=1 to i
s=s*j*(-1)^(i+1)
end for
t=t+s
end for

? t