gpt4 book ai didi

c++ - 总线错误 : 10 while trying to mess with arrays

转载 作者:行者123 更新时间:2023-11-30 04:10:42 25 4
gpt4 key购买 nike

我只是在玩数组,我在 Emacs (OSX) 中编写了这个小东西,当我尝试运行它时遇到了 Bus error: 10。我不知道为什么会这样,也许有人可以告诉我...

#include <iostream>

int main()
{
int array[3][3];

for (int i = 0; i < 3; i++)
{
for (int j = 0; i < 3; j++)
{
array[i][j] = j + i;
}
}
for (int i = 0; i < 3; i++)
{
for (int j = 0; j < 3; j++)
{
std::cout << array[i][j];
}
}
return 0;
}

最佳答案

就在这里:

  for (int j = 0; i < 3; j++)

我想你想要一个 j 在中间。

  for (int j = 0; j < 3; j++)

关于c++ - 总线错误 : 10 while trying to mess with arrays,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20509449/

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