码迷,mamicode.com
首页 > 其他好文 > 详细

CMD命令实现数字雨

时间:2020-02-28 14:09:48      阅读:209      评论:0      收藏:0      [点我收藏+]

标签:row   16px   cmd命令   random   etl   led   桌面   div   dexp   

 

  首先,我们在桌面上先创建一个“.bat”格式的文件,文件名为“数字雨.bat”,创建好了之后右键点击编辑。

  在其中输入:

@echo off

title 数字雨

color 0a

setlocal ENABLEDELAYEDEXPANSION

for /l %%i in (0) do (

set "line="

for /l %%j in (1,1,80) do (

set /a Down%%j-=2

set "x=!Down%%j!"

if !x! LSS 0 (

set /a Arrow%%j=!random!%%3

set /a Down%%j=!random!%%15+10 )

set "x=!Arrow%%j!"

if "!x!" == "2" (

set "line=!line!!random:~-1! "

) else (set "line=!line! ")

)

set /p=!line!<nul

)

 

  返回后双击点击运行。

技术图片

CMD命令实现数字雨

标签:row   16px   cmd命令   random   etl   led   桌面   div   dexp   

原文地址:https://www.cnblogs.com/meteor-disappears-chen/p/12376641.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!