VB中的阶乘累加求和1!+2!+3!+4!+5!+6!+7!+8!+9!+10!

问题描述:

VB中的阶乘累加求和1!+2!+3!+4!+5!+6!+7!+8!+9!+10!
我是VB的初学者 用for循环解 急用!

a=0
for i=1 to 10
h=1
for j=1 to i
h=h*j
next j
a=a+h
next i
'a就是结果