转到for循环中的下一个元素for语句而不是一般方式

时间:2011-07-31 08:55:48

标签: c++ for-loop

可以帮我处理下面的简单代码吗?

我评论问题在哪里

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
}

 }

1 个答案:

答案 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;
}