博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
VBS猜数游戏
阅读量:5142 次
发布时间:2019-06-13

本文共 1177 字,大约阅读时间需要 3 分钟。

VBS 猜数游戏

2018-11-09  21:19:11

by xutao

1 msgbox "The Swami" ,,"Game" 2 msgbox "The system will give a integer in the range of 1 to 100 randomly, and you are allowed to guess a integer one time! Less tries, more luck" , ,"Rule" 3 while 1=1   '无限循环 4  5 dim tryTime  '尝试次数 6 tryTime = 1 7  8 dim n  9 randomize  '初始化随机种子,不然每次都会一样10 n = int(rnd*100)11 12 int input13 input = int(inputbox("Guess it"))14 15 '注意:while语句的语法是: while condition  ... wend (不加then)16 17 while n <> input  18 tryTime = tryTime+119 if input>n then20 input = int(inputbox("Too big! Try again!"))21 else 22 input = int(inputbox("Too small! Try again!"))23 end if24 wend25 26 if tryTime=1 then27 msgbox "Genius! Buy a lottery ticket quickly!"28 elseif tryTime=2 then29 msgbox "666"30 elseif tryTime=3 then31 msgbox "NB"32 elseif tryTime=4 then33 msgbox "Cool!"34 elseif tryTime=5 then 35 msgbox "Good!"36 elseif tryTime=6 then 37 msgbox "Not Bad!"38 elseif tryTime=7 then39 msgbox "Unfortuntate!"40 elseif tryTime=8 then41 msgbox "Idiot!"42 else 43 msgbox "SB!"44 end if45 47 if msgbox("ReTry?",vbOK)<>1 then48 msgbox "Bye!"49 wscript.quit50 end if51 53 wend

 

转载于:https://www.cnblogs.com/XT-xutao/p/9937267.html

你可能感兴趣的文章
C++两水杯量出所需水量的小算法
查看>>
基于K-近邻分类算法的手写识别系统
查看>>
使用easyui的form提交表单,在IE下出现类似附件下载时提示是否保存的现象
查看>>
PC站跳转M站的方法
查看>>
wow 各职业体验(pvp)
查看>>
Streaming的receiver模式
查看>>
[转载]一个人的失败,99%失败于“脾气”
查看>>
【Nowcoder】玩游戏
查看>>
过滤器(Filter)
查看>>
字符串的操作
查看>>
性能优化之Java(Android)代码优化
查看>>
springMVC相关—文件上传
查看>>
由Oracle 11g SYSAUX 和 SYSTEM 表空间回收引发的联想
查看>>
uva 1416 Warfare And Logistics
查看>>
欲则不达
查看>>
盒子游戏
查看>>
OpenJudgeP1.10.08:病人排队__(刷题)_水题
查看>>
观察者模式
查看>>
Hadoop分布式文件系统中架构和设计要点汇总
查看>>
cout和printf
查看>>