Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ループのサンプルを以下に示します。forループを使わずに同じ機能を実現する方法。
for /l %x in (1, 1, 100) do echo %x
:loop set /a count+=1 echo %count% if %count% neq 100 goto:loop