当前位置:主页 > 脚本语言 > VBS >

算阶乘的vbs小程序

时间:2021-02-06 10:05:13 | 栏目:VBS | 点击:

dim n,ans,i
n=inputbox("n(0<=n<=170)=")
ans=1
for i=1 to n
ans=ans*i
next
msgbox(ans)

您可能感兴趣的文章:

相关文章