gpt4 book ai didi

java - 用奇数填充二维数组java

转载 作者:塔克拉玛干 更新时间:2023-11-02 19:16:14 25 4
gpt4 key购买 nike

我需要用奇数填充二维数组。

我希望它看起来像这样

13579
13579
13579
13579

这是我目前所拥有的:

    public static void twoDArray(){

//http://stackoverflow.com/questions/11243774/how-to-automatically-populate-a-2d-array-with-numbers
int twoDimention[][] = new int[5][3];

for(int i=0; i<twoDimention.length; i++){
for(int j=0; j<twoDimention[i].length; j++){
twoDimention[i][j] = 2*i + 1;


System.out.printf("%d5", twoDimention[i][j]);
}
System.out.println();
}

它打印:

1515151515
3535353535
5555555555
7575757575
9595959595

有人可以帮助完成这项工作吗?

最佳答案

twoDimention[i][j] = 2*j + 1; // j instead of i
System.out.print(twoDimention[i][j]);

关于java - 用奇数填充二维数组java,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34983171/

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