pooq #5026(2007/12/28 02:26 GMT) [ Batchfile ] Rating1/1=1.00
cmd.exeで。
1 2 3 4 5 6 7 8 9
@echo off setlocal enabledelayedexpansion for /l %%x in (1,1,9) do ( for /l %%y in (1,1,9) do ( set /a a=%%x*%%y set a= !a! echo %%x * %%y = !a:~-2! ) )
Rating1/1=1.00-0+
[ reply ]
pooq
#5026()
[
Batchfile
]
Rating1/1=1.00
@echo off setlocal enabledelayedexpansion for /l %%x in (1,1,9) do ( for /l %%y in (1,1,9) do ( set /a a=%%x*%%y set a= !a! echo %%x * %%y = !a:~-2! ) )Rating1/1=1.00-0+
[ reply ]