gpt4 book ai didi

Java 将 INT 数组中的项目添加到 String 数组

转载 作者:行者123 更新时间:2023-11-30 03:42:02 26 4
gpt4 key购买 nike

public static String fibonacci(int a, int b){

int max = 10;
String returnValue;

int[] result = new int[max];
result[0] = a;
result[1] = b;
for (int i1 = 2; i1 < max; i1++) {
result[i1] = result[i1 - 1] + result[i1 - 2];
}
for (int i3 = 0; i3 < max; i3++) {
//Here you can do something with all the values in the array one by one
//Maybe make something like this?:
int TheINTthatHasToBeAdded = result[i3];
//The line where TheINTthatHasToBeAdded gets added to the String returnValue

}


return returnValue;

}

-

-

结果数组包含整数项,returnValue 是字符串。

我的问题是;如何将结果数组中的项目添加到 returnValue 数组?

最佳答案

我假设您正在尝试返回一个包含您找到的所有斐波那契数的字符串?如果是,请更改以下内容:

StringBuilder returnValue = new new StringBuilder()

将以下内容添加到第二个循环中

returnValue.append(result[i3]).append(",");

将返回值更改为:

return returnValue.toString();

这应该可以解决它(最后有一个额外的“,”)

关于Java 将 INT 数组中的项目添加到 String 数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26618677/

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