0

在单行中执行 AND 语句的简单方法是什么?

example:

if %turn2%== 1
and
if %ttt1%== 1
set ttt1=X
4

1 回答 1

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
于 2013-11-10T22:40:54.753 回答