关于循环的问题 大家帮帮忙 谢啦 急~
想做一个关于计算n的阶乘的代码 现在做出来如下但是do while 出了些问题 不知道在哪 麻烦大家帮我看看 谢啦~
<html>
<body>
<script language=vbscript>
dim i
i=inputbox("请输入一个数: ")
if i=0 then
document.write("0")
elseif i<0 then
document.write("输入错误!")
elseif i>0 then
dim k
k=1
do while i>=1
i=i+1
k=i*k
loop
document.write("结果是"&k)
end if
</script>
</body>
</html>