使循环拍摄回到顶部

时间:2015-04-23 02:41:39

标签: c++ loops while-loop

所以,我正在为我的计算机科学入门班做一个C ++作业。

在程序中,我希望有一个循环,可以随时随地回到顶部,有关如何使用布尔值示例:

bool1 = true;
while (bool1){
    bool1 = true;
}

无论如何,我可以在While循环中镜像此效果,该循环设置为依赖于如下数值:

while(x > 99)

提前致谢。

1 个答案:

答案 0 :(得分:0)

你在评论中说:

  

重复回到开头。

如果您想转到while循环的开头,请使用continue;

while(x > 99)
{
   // Do your stuff.
   // ...
   // Upon some condition, go to the beginning.
   if ( some_condition_is_true )
      continue;

   // Otherwise, proceed with the normal execution of
   // the loop.
   // ...

}