silverwire #7383(2008/08/27 03:58 GMT) [ Batchfile ] Rating0/0=0.00
バッチです。 e.g. C:\>pyramid 4 * ** *** **** *** ** *
1 2 3 4 5 6 7 8 9 10 11 12 13
:: pyramid.bat @echo off setlocal enabledelayedexpansion for /l %%i in (1,1,%1) do ( set t=!t!* echo !t! ) for /l %%i in (%1,-1,2) do ( set t=!t:~1,%%i! echo !t! ) endlocal goto :EOF
Rating0/0=0.00-0+
[ reply ]
silverwire
#7383()
[
Batchfile
]
Rating0/0=0.00
バッチです。 e.g. C:\>pyramid 4 * ** *** **** *** ** *:: pyramid.bat @echo off setlocal enabledelayedexpansion for /l %%i in (1,1,%1) do ( set t=!t!* echo !t! ) for /l %%i in (%1,-1,2) do ( set t=!t:~1,%%i! echo !t! ) endlocal goto :EOFRating0/0=0.00-0+
[ reply ]