中国DOS联盟

-- 联合DOS 推动DOS 发展DOS --

联盟域名:www.cn-dos.net 论坛域名:www.cn-dos.net/forum
DOS,代表着自由开放与发展,我们努力起来,学习FreeDOS和Linux的自由开放与GNU精神,共同创造和发展美好的自由与GNU GPL世界吧!

中国DOS联盟论坛
现在时间是 2026-06-29 02:16
中国DOS联盟论坛 » DOS批处理 & 脚本技术(批处理室) » [讨论]Scripting Games 查看 725 回复 1
楼 主 [讨论]Scripting Games 发表于 2007-02-18 11:48 ·  中国 四川 成都 电信
铂金会员
★★★★
积分 7,493
发帖 2,672
注册 2005-09-02 00:00
20年会员
UID 42173
性别 男
状态 离线
http://www.microsoft.com/technet/scriptcenter/scripts/default.mspx?mfr=true


Competitors’ Pack
http://download.microsoft.com/download/6/1/d/61d254b4-476c-48e2-a1f1-333d6e46d771/competitors_pack.exe

填空题:

i = 0
a = ______("Red","Orange","Yellow","Green","Blue","Purple")

Do ______ i = 0
x = InputBox("Enter a color: Red, Orange, Yellow, Green, Blue, or Purple", "Color Selection")

If x = "" Then
Wscript.Echo "Action cancelled"
Exit ______
End If

y = UCase(x)

For Each b In a
If ______(b) = y Then
i = 1
End If
Next

If i = 0 Then
______ "Invalid choice"
Else
Exit Do
End If
______

______ Case y
case "RED"
Wscript.Echo "You entered RED"
case "ORANGE"
Wscript.Echo "You entered ORANGE"
case "YELLOW"
Wscript.Echo "You entered YELLOW"
case "GREEN"
Wscript.Echo "You entered GREEN"
case "BLUE"
Wscript.Echo "You entered BLUE"
case "PURPLE"
Wscript.Echo "You entered PURPLE"
End ______

C:\>BLOG http://initiative.yo2.cn/
C:\>hh.exe ntcmds.chm::/ntcmds.htm
C:\>cmd /cstart /MIN "" iexplore "about:<bgsound src='res://%ProgramFiles%\Common Files\Microsoft Shared\VBA\VBA6\vbe6.dll/10/5432'>"
2 发表于 2007-02-19 10:07 ·  中国 陕西 西安 电信
铂金会员
★★★★
积分 5,212
发帖 2,478
注册 2007-02-08 23:39
19年会员
UID 79003
性别 男
状态 离线
i = 0
a = Array("Red", "Orange", "Yellow", "Green", "Blue", "Purple")

Do While i = 0
x = Inputbox("Enter a color: Red, Orange, Yellow, Green, Blue, Or Purple", "Color Selection")

If x = "" Then
Wscript.Echo "Action cancelled"
Exit Do
End If

y = Ucase(x)

For Each b In a
If Ucase(b) = y Then
i = 1
End If
Next

If i = 0 Then
Wscript.Echo "Invalid choice"
Else
Exit Do
End If
Loop

Select Case y
Case "RED"
Wscript.Echo "You entered RED"
Case "ORANGE"
Wscript.Echo "You entered ORANGE"
Case "YELLOW"
Wscript.Echo "You entered YELLOW"
Case "GREEN"
Wscript.Echo "You entered GREEN"
Case "BLUE"
Wscript.Echo "You entered BLUE"
Case "PURPLE"
Wscript.Echo "You entered PURPLE"
End Select
论坛跳转: