gpt4 book ai didi

java - 为什么我的解决方案对于反转整数是错误的?

转载 作者:塔克拉玛干 更新时间:2023-11-03 04:21:05 25 4
gpt4 key购买 nike

我需要反转一个整数,在这种情况下,123 应该变成 321。我将 int 转换为字符串,反转字符串,将其转换回 int,然后返回它,但一些我如何得到 error

有什么好的方法可以解决这个问题?

这是我的代码:

public static int solution(int x) {
String s = Integer.toString(x);
String result = " ";
int ans = 0;

for(int i = s.length() - 1; i >= 0; i--) {
result += s.charAt(i);
}

ans = Integer.parseInt(result);

return ans;
}


public static void main(String args[]) {
int x = 123;

System.out.print(solution(x))
}

这是我的错误:

Exception in thread "main" java.lang.NumberFormatException: For input string: " 321"
at java.base/java.lang.NumberFormatException.forInputString(NumberFormatException.java:65)
at java.base/java.lang.Integer.parseInt(Integer.java:638)
at java.base/java.lang.Integer.parseInt(Integer.java:770)
at Node.solution(Node.java:28)
at Node.main(Node.java:47)

最佳答案

不要在开头添加空格:

String result = " ";

使用空字符串

String result = "";

而且,与问题无关,你也可以通过这个来实现:

int x = 123;
StringBuilder stringBuilder = new StringBuilder(x);
int y = Integer.parseInt(stringBuilder.reverse().toString());

关于java - 为什么我的解决方案对于反转整数是错误的?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52190015/

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