可以帮我处理下面的简单代码吗?
我评论问题在哪里
TIA
for(int i=0;i<10;i++)
{
if(x[i] !=1000)
{
//do something
}
else
{
//i want it to go to the next i and again check x[i] != 1000,not i++
}
if(y != x[i])
{
//do something
}
}
答案 0 :(得分:4)
我不确定j
是谁,但你可能正在寻找这个:
if(x[i] !=1000)
{
//do something
}
else
{
//i want it to go to the next i and again check x[i] != 1000,not j++
continue;
}