返回列表 发帖

我是最最新手,向你们学习

@echo off & setlocal enabledelayedexpansion
for /f "tokens=1-3 delims= " %%a in (1.txt) do (
set /a n+=1
if !n!==1 echo %%a      %%b   %%c
if !n!==2 echo %%a         %%b  %%c
if !n!==3 echo %%a      %%b  %%c
if !n!==4 echo %%a         %%b    %%c
if !n!==5 echo %%a         %%b     %%c
if !n!==6 echo %%a      %%b  %%c
)
pauseCOPY
1

评分人数

TOP

返回列表