Comment detail

九九の表示 (Nested Flatten)
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!
  )
)

Index

Feed

Other

Link

Pathtraq

loading...