返回列表 发帖
@echo off
set a=今日明月在
set b=%a:~0,2%
set c=%a:~2,2%
set d=%a:~-1%
echo %b%
echo %c%
echo %d%
pause

TOP

返回列表