我有一个如下的逻辑,我有一个计数器
if(condition1 == true)
{
// do something
if (counter==1)
{
// break and go to last else statement
}
}
else if (condition2==true)
{
if (counter == 2)
{
// break and go to last else statement
}
// do something
}
else
{
// do this
}
我如何在这个逻辑中使用 break ?我尝试为 else 放置 goto 标签,但显然它无效。我想避免切换,因为逻辑太多。
counter 将在第二个 if else 循环中为 2,如果 counter = 2 then first if and secong if else should execute if counter=3 then first if second if else 第三个 if else 应该执行 ans -</p>