返回列表 发帖

批处理输出如下图形--闪电



答案暂时不公布
时光荏苒||新陈代谢&&涛声依旧||本性难移

@echo off&setlocal enabledelayedexpansion
for /l %%a in (1 1 11) do set "空格=!空格! "&set "星号=!星号!*"
for /l %%a in (1 1 10) do echo !空格:~%%a!!空格:~%%a!!星号:~,%%a!
for /l %%a in (10 -1 1) do echo !空格:~-%%a!!星号:~-%%a!
pauseCOPY
2

评分人数

TOP

@echo off
setlocal enabledelayedexpansion
:: 初始化满值空格和星星
for /l %%i in (1, 1, 10) do (
    set "spaceStr=!spaceStr! "
    set "starStr=!starStr!*"
)
:: 循环输出
for /l %%i in (1, 1, 10) do (
    echo   !spaceStr:~%%i!!spaceStr:~%%i!!starStr:~,%%i!
)
for /l %%j in (1, 1, 10) do (
    echo !spaceStr:~%%j!!starStr:~%%j!
)
endlocalCOPY

TOP

@echo off
setlocal enabledelayedexpansion
for /l %%i in (1,1,20) do (
set starstr=!starstr!*
set spacestr= !spacestr!
)
set spacelen=20
set starlen=1
:STARTLOOP
if !starlen! GTR 10 goto LOOPEND
echo !spacestr:~1,%spacelen%! !starstr:~0,%starlen%!
set /a spacelen=!spacelen!-2
set /a starlen=!starlen!+1
goto STARTLOOP
:LOOPEND
set spacelen=9
set starlen=10
:STARTLOOP2
if !starlen! LSS 1 goto LOOPEND2
echo !spacestr:~1,%spacelen%! !starstr:~0,%starlen%!
set /a spacelen=!spacelen!-1
set /a starlen=!starlen!-1
goto STARTLOOP2
:LOOPEND2COPY
1

评分人数

TOP

谢谢分享

TOP

返回列表