C-连续n次for循环

问题描述 投票:-1回答:1

我如何使用continue关键字,连续n次循环。像在shell中一样,我们可以继续2来跳过2次迭代。如何在C中实现这一目标。

c shell keyword
1个回答
0
投票

您无法使用continue来执行此操作,但是您可以跳过for循环来递增变量以跳过n迭代。

for (int i = 0; i < 10; i++) 
{
   if (some_condition) 
     i += nSkip;

    (...) 
}
© www.soinside.com 2019 - 2024. All rights reserved.