随机选项批处理文件

时间:2013-03-28 00:09:11

标签: batch-file

是否可以使用此代码http://pastebin.com/wN6y63PH选择3个部分的随机选项?: :responce1 :responce2 :responce3

更多信息:

我希望程序随机选择其中一个选项,以便每次都不同。

1 个答案:

答案 0 :(得分:0)

set /a "rnd=%RANDOM% * 3 / 32768 + 1"
goto responce%rnd%

以下是Windows批处理中generating random numbers的更多信息。