老师叫我们交一份VBScript的小程序,请问用什么软件制作,怎么做呢,急,在线等

老师叫我们交一份VBScript的小程序,请问用什么软件制作,怎么做呢,急,在线等,第1张

VBS(VBScript的进一步简写)是基于Visual Basic的脚本语言,开发工具:记事本,将程序清单输入到记事本里面, 然后保存为以.vbs为扩展名的文件(如果在文件名上没有“.***”,就打开控制面板-文件夹选项-查看-取消隐藏已知文件类型的扩展名).然后双击, 观察运行结果。具体的程序编写请参考链接http://blog.sina.com.cn/s/blog_639f077a0100hi29.html,讲的很详细,但是有点小恶作剧,放心啦,最后不会真的关机的,试过了,O(∩_∩)O~,楼主满意请采纳啊。

<%if request.querystring("action")="action_num" then

dim sz_num

sz_num=request.form("input_num")

'sz_num=-20

if sz_num>=1 and sz_num<=100 then

'response.write "t"

response.write "<script>alert('输入正确')history.back()</script>"

else

'response.write "f"

response.write "<script>alert('输入错误')history.back()</script>"

end if

else

%>

<form name="num" action="test.asp?action=action_num" method="post">

<input type="text" name="input_num" value="" size="30">

<input type="submit" name="action_num" value="判断">

</form>

<%end if%>

'将下列代码保存到一个文本文档中然后将后缀名改为vbs即可执行:

Dim i, int1(3), str1(3), s

int1(0) = 22

int1(1) = 14

int1(2) = 6

int1(3) = 13

Call sortFigu(int1)'调用过程进行处理

For i = LBound(int1) To UBound(int1)

    s = s & CStr(int1(i)) & " "

Next

MsgBox s'显示int1排序后的结果

str1(0) = "d"

str1(1) = "a"

str1(2) = "j"

str1(3) = "b"

Call sorString(str1)'调用过程进行处理

s = ""

For i = LBound(str1) To UBound(str1)

    s = s & CStr(str1(i)) & " "

Next

MsgBox s'显示str1排序后的结果

Private Sub sortFigu(ByRef int1)'数字数组升序排序

    Dim i, j, temp

    For i = LBound(int1) To UBound(int1)

        For j = i To UBound(int1)

            If int1(i) > int1(j) Then

                temp = int1(i)

                int1(i) = int1(j)

                int1(j) = temp

            End If

        Next

    Next

End Sub

Private Sub sorString(ByRef str1)'字符数组降序排序

    Dim i, j,temp

    For i = LBound(str1) To UBound(str1)

        For j = i To UBound(str1)

            If str1(i) < str1(j) Then

                temp = str1(i)

                str1(i) = str1(j)

                str1(j) = temp

            End If

        Next

    Next

End Sub

'以上只是个演示,里面的两个过程你可以放到你的网页中调用


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/yw/11643068.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-17
下一篇 2023-05-17

发表评论

登录后才能评论

评论列表(0条)

保存