gpt4 book ai didi

java - 在没有循环的情况下反转java中的整数

转载 作者:行者123 更新时间:2023-12-04 01:50:24 24 4
gpt4 key购买 nike

这是一道作业题

有没有一种方法可以在不使用任何循环的情况下在 Java 中反转数字?我能想到的唯一解决方案是使用 String 反转它,然后将其转换回整数。

最佳答案

If you want to reverse a number withour using any loop you can use Recursion method call. Following program is doing same

public static void reverseMethod(int number) {
if (number < 10) {
System.out.println(number);
return;
} else {
System.out.print(number % 10);
reverseMethod(number / 10);
}
}

public static void main(String args[]) {
int num = 4567;
reverseMethod(num);
}

关于java - 在没有循环的情况下反转java中的整数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53358013/

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