A=2:b=1:c=0 if a then if b then if c then Print “1” else Print “2” else Print “3” else Print
问题描述:
A=2:b=1:c=0 if a then if b then if c then Print “1” else Print “2” else Print “3” else Print
答
结果
print "2"
因为到 if c then Print “1”
判别c=0是假,不执行而直接进入下面 else Print “2” 的代码,
所以就是2的结果.