java program reverse a number code example

Example 1: reverse a number using mathematical operations in java

//continue to loop until  a value is equal to 0

public class ReverseNum{
  
  public static void main(String[] args {
  
  int a = 543;
  int reverse = 0;
  
 while(a!=0){ //itera the process
 
 int digit = a%10; //isolate the last digit number
 
 reverse = digit + (reverse*10); //append last digit to reverse
 a=a/10; // remove the last digit from number
   } 
   System.out.println(reverse);
   
     } }

Example 2: reverse a integer in java

while(num != 0) 
{
   int digit = num % 10;
   reversed = reversed * 10 + digit;
   num /= 10;
}

Tags:

Misc Example