Answers for "reverse of a number java"

2

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);
   
     } }
Posted by: Guest on January-14-2021

Code answers related to "reverse of a number java"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language