Question: Write a method called swapDigitPairs that accepts an integer as a parameter and returns a new integer whose value is similar to s but with
Write a method called swapDigitPairs that accepts an integer as a parameter and returns a new integer whose value is similar to ’s but with each pair of digits swapped in order. For example, the call of swapDigitPairs(482596) would return 845269. Notice that the 9 and 6 are swapped, as are the 2 and 5, and the 4 and 8. If the number contains an odd number of digits, leave the leftmost digit in its original place. For example, the call of swapDigitPairs(1234567) would return 1325476. You should solve this problem without using a String.
Step by Step Solution
3.32 Rating (161 Votes )
There are 3 Steps involved in it
public static int swapDigitPairs int n int result 0 int p... View full answer
Get step-by-step solutions from verified subject matter experts
