if (some condition) --suppose this gets true
....
....
elseif (some condition)--this also gets false
...
...
else
... --this else condition becomes false
...
if (some condition)
..
else
..
endif-- stops execution when it gets here,doesnt moves on to next endif
endif
现在我想做的是跳过其他部分。为此,我将跳过它,直到它获得一个 endif 关键字。但是当它在 else 部分中获得第一个 endif 时,它会停止执行。如何跳过该 endif 以使其与 if 的确切 endif 匹配。真的很混乱,请帮助...