reverse a integer in java
while(num != 0)
{
int digit = num % 10;
reversed = reversed * 10 + digit;
num /= 10;
}
reverse a integer in java
while(num != 0)
{
int digit = num % 10;
reversed = reversed * 10 + digit;
num /= 10;
}
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);
} }
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us