math.vbs 自然数n的n次方的的和或积的级数
时间:2021-03-12 09:57:26|栏目:VBS|点击: 次
复制代码 代码如下:
dim n,m
n=inputbox("input a number:","recursion")
m=factorial ( n )
if n<0 then msgbox "must be input a number bigger 0."
elseif n=0 then msgbox "0"&"!"&"is:"&"0"
elseif n>0 then msgbox n&"is:"&m
rem how to done not input and press sure case.
end if
Function Factorial (N)
If N <= 1 Then Factorial = 1
Else Factorial = Factorial(N - 1)*n^n
End If
End Function
上一篇:VBS教程:运算符-运算符(+)
栏 目:VBS
下一篇:VBS教程:属性-DateLastAccessed 属性
本文标题:math.vbs 自然数n的n次方的的和或积的级数
本文地址:http://www.codeinn.net/misctech/79545.html