gpt4 book ai didi

c++ - 如何根据数组元素固定我的循环| C++

转载 作者:行者123 更新时间:2023-11-30 03:35:52 25 4
gpt4 key购买 nike

我有一个数组和一个 for 循环。我希望 for 循环根据数组中元素的数量停止。

例如,如果我有一个 int array []={1,0,1,0,1}我希望循环执行代码 5 次。类似于字符串的函数 .length() 但对于整数。带有简单代码的示例将是最好的答案:)

like this pseudocode:

for(int b=0;b<array-length;b++)

最佳答案

除非您需要索引,否则以下工作正常:

int ar[] = { 1, 2, 3, 4, 5 };
for (auto i : ar) {
std::cout << i << std::endl;
}

关于c++ - 如何根据数组元素固定我的循环| C++,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40972698/

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