gpt4 book ai didi

java - 将最后一个元素添加到数组后面的字符串中

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

我的存储字符串给了我除了最后一个数字之外的所有数字,我知道它是因为最后一个数字没有任何东西可以与右边的数字进行比较。我可以以某种方式将最后一个数字添加到字符串末尾吗,

    for(int i = 0;i < othercontent.length -1 ;i++ )
{
if(othercontent[i] != othercontent[i + 1])
{
storage = storage + othercontent[i];

}
}

最佳答案

for(int i = 0; i < othercontent.length ;i++ )
{
if(i == 0 || othercontent[i] != othercontent[i - 1])
{
storage = storage + othercontent[i];
}
}

关于java - 将最后一个元素添加到数组后面的字符串中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18870933/

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