Java:不使用數組反轉Int 值
代碼說明:
您提供的程式碼片段使用while 迴圈來反轉整數值。它的工作原理如下:
只反轉奇數:
要只反轉給定整數中的奇數,可以使用以下步驟:
範例程式碼:
<code class="java">public static int reverseOdd(int input) { int even = 0; int odd = 0; // Separate even and odd digits while (input > 0) { int digit = input % 10; if (digit % 2 == 0) { even = even * 10 + digit; } else { odd = odd * 10 + digit; } input /= 10; } // Reverse odd digits odd = reverseInt(odd); // Combine reversed odd and original even digits return even + odd; } public static int reverseInt(int input) { long reversedNum = 0; long input_long = input; while (input_long != 0) { reversedNum = reversedNum * 10 + input_long % 10; input_long /= 10; } if (reversedNum > Integer.MAX_VALUE || reversedNum < Integer.MIN_VALUE) { throw new IllegalArgumentException(); } return (int) reversedNum; }</code>
以上是如何在 Java 中僅反轉整數中的奇數?的詳細內容。更多資訊請關注PHP中文網其他相關文章!