gpt4 book ai didi

c++ - 如何使用嵌套循环增加数组的值

转载 作者:行者123 更新时间:2023-12-02 10:34:46 24 4
gpt4 key购买 nike

关闭。这个问题需要debugging details .它目前不接受答案。












想改进这个问题?将问题更新为 on-topic对于堆栈溢出。

2年前关闭。




Improve this question




所以我需要帮助。问题是 int arr[5] = {0};我知道数组的值是 {0,0,0,0,0}填充整个数组。在代码的末尾,数组必须有 {1,2,3,4,5} 的值。在里面。要解决它必须使用嵌套的 for 循环。
我试过下面的代码
抱歉,如果这个问题的格式有误,这是我第一次使用手机。

      int arr[5] = {0};

for(int j = 1; j<6; j++)
{

for(int i = 0; i<5; i++)
{
arr[i] = j;
}
}

最佳答案

我不知道这样做有什么好处,但如果你必须使用嵌套的 for 循环,以下是一个选项

int main()
{
int arr[5] = {0};

for(int j = 0; j < 5; ++j)
{

for(int i = 1; i < 2; ++i)
{
arr[j] = j+i;
}
}

for(int i{};i<5;++i) std::cout << arr[i] << ", ";
}

或者像@JaMit 评论建议的那样
int main()
{
int arr[5] = {0};

for(int j = 0; j < 5; ++j)
{

for(int i = 0; i < j+1; ++i)
{
arr[j]++;
}
}

for(int i{};i<5;++i) std::cout << arr[i] << ", ";
}

关于c++ - 如何使用嵌套循环增加数组的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60795771/

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