在SINGLE行中执行AND语句的简单方法是什么?
example:
if %turn2%== 1
and
if %ttt1%== 1
set ttt1=X
答案 0 :(得分:1)
没有AND
,AFAIK。要确保满足这两个条件,只需将它们一个接一个地放置:
REM The next line echos
if "1"=="1" if "2"=="2" echo Equal
REM This one does not
if "1"=="1" if "2"=="3" echo Equal again