gpt4 book ai didi

java - 打印不带任何0的字符串

转载 作者:行者123 更新时间:2023-12-03 09:06:12 25 4
gpt4 key购买 nike

因此,我有一个项目,他们告诉我必须接收一个正整数,并将其更改为字符串带,我必须用didgit对其进行处理。

private static String intToString(int n) {
if (n < 0)
throw new IllegalArgumentException("o nº recebido tem de ser
positivo: " + n);

// else if((x != (int)x)){
// throw new IllegalArgumentException("")
// }

else {
String text = "";
int array[] = new int[(int) (Math.log10(n) + 1)];
for (int x = 0; x < array.length; x++) {
array[x] = n % 10;
n = n / 10;
}
for (int x = array.length - 1; x >= 0; x--) {
text = text + String.valueOf(array[x]);

}
System.out.println(text);
}
return null;
}

完成之后,下一部分将删除该字符串上的所有0,然后执行以下操作:
private static int removeZeros(int n) {
String text = intToString(n);
for (int l = 0; l < text.length(); l++) {
if (text[l] != "0") {
System.out.println("Sick");;
}
}
return 0;
}

但这给了我这个错误:
表达式的类型必须是数组类型,但是它解析为String。

我该怎么解决这个错误?

最佳答案

字符串不是数组,尽管它当然是通过底层的数组实现的。

对于一个字符串,你可以做

text.charAt(l)

代替
text[l]

然后与“0”(字符)而不是“0”(字符串)进行比较。

关于java - 打印不带任何0的字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43552966/

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