美文网首页
在CMD中取随机数

在CMD中取随机数

作者: BlackNeko | 来源:发表于2016-06-19 19:27 被阅读225次

    基本命令:%random%

    echo %random%
    

    取值范围:[0~65535]

    自定义取值范围:

    set min=4
    set max=12
    set /a mod=%max% - %min% + 1
    set /a test=%RANDOM% % %mod% + %min%
    

    取值范围:[4,12]

    set min=4
    set max=5
    set /a mod=%max% - %min% + 1
    set /a test=%RANDOM% % %mod% + %min%
    

    取值范围:[4,5]

    相关文章

      网友评论

          本文标题:在CMD中取随机数

          本文链接:https://www.haomeiwen.com/subject/yobbdttx.html