gpt4 book ai didi

java - 返回一个新字符串,所有出现的输入字符都移到末尾

转载 作者:搜寻专家 更新时间:2023-11-01 01:31:05 24 4
gpt4 key购买 nike

<分区>

我必须返回一个新字符串,所有出现的输入字符都移到末尾。我试图通过提供的字符串比较给定的字符,但无法获得预期的输出。

public String moveChar(String str, char c) {
int len=str.length();
String newstr="";
int m=len-1;
for (int i=0; i<len; i++) {
char ch1=str.charAt(i);
char ch2=str.charAt(m);
if (ch1==c) {
newstr=newstr+ch2;
}
else {
newstr=newstr+ch1;
}
}
return newstr;
}

预期输出:“heoll”

实际输出:""heooo"

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