gpt4 book ai didi

java - 2D for循环数组问题为什么超长

转载 作者:行者123 更新时间:2023-12-02 09:19:38 25 4
gpt4 key购买 nike

            int x=10,y=10;
char[][] gametable=new char[x][y];
for(int i=0;i<gametable.length;i++)
{
for(int j=0;j<gametable[i].length;i++)
{
gametable[i][j]='.';
System.out.print(gametable[i][j]);
}


System.out.println(i);

}

the error is Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: Index 10 out of bounds for length 10 at test.main(test.java:9) How to slove it?Thanks a lot!!!

最佳答案

第二个循环中有一个拼写错误。您编写了 i++ 而不是 j++。下次小心点!

关于java - 2D for循环数组问题为什么超长,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58777383/

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