欢迎来到入门教程网!

vb

当前位置:主页 > 软件编程 > vb >

math.vbs 自然数n的n次方的的和或积的级数

来源:本站原创|时间:2020-01-10|栏目:vb|点击:

复制代码 代码如下:

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

上一篇:没有了

栏    目:vb

下一篇:VBS 脚本不能运行 提示Windows无法访问指定设备路径或文件

本文标题:math.vbs 自然数n的n次方的的和或积的级数

本文地址:https://www.xiuzhanwang.com/a1/vb/7517.html

网页制作CMS教程网络编程软件编程脚本语言数据库服务器

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:835971066 | 邮箱:835971066#qq.com(#换成@)

Copyright © 2002-2020 脚本教程网 版权所有