gpt4 book ai didi

c++ - 如何在 for 循环中使用第三个参数?

转载 作者:行者123 更新时间:2023-11-30 02:43:53 29 4
gpt4 key购买 nike

#include <iostream>
using namespace std;

int main {
int a;
for (int i=0; i<a; i+7){
i++;
}
}

为什么我不能在这个 for 循环中使用 i+7? (我不确定如何制作这个 for 循环,以便每次迭代时它可以加 7 而不是一次)。

最佳答案

  1. 你需要声明a
  2. 你需要声明i
  3. 第三个参数:i=i+7(如 Michael 所述,也可以表示为:i+=7)

应该是:

int i, a = 21;        //choose some value for a
for (i=0; i < a; i=i+7)

此外,我不知道您为什么要在循环内执行 i++...我认为您正在混合使用 for 和 while 循环。

关于c++ - 如何在 for 循环中使用第三个参数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25819704/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com