gpt4 book ai didi

java - 将我的值作为字符串存储在数组的下一行中?二维数组?

转载 作者:行者123 更新时间:2023-12-01 14:43:09 24 4
gpt4 key购买 nike

我需要使用二维数组作为作业的一部分。

最佳答案

如果您绝对必须使用二维数组,那么您将需要嵌套循环来将其打印出来。

对于

for(int i=0; i < FutureValueArray.length; ++i) {
System.out.println("whatever you print before each row);
for(int j=0; j < utureValueArray[i]; ++j) {
Sytem.out.print(utureValueArray[i][j] + "\t");
}
}

对于每个

for(String[] row : FutureValueArray) {
System.out.println("whatever you print before each row);
for(String cell : row) {
Sytem.out.print(cell + "\t");
}
}

关于java - 将我的值作为字符串存储在数组的下一行中?二维数组?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15737631/

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