Q:

Java Program to reverse a number using a while loop in Java

0

Java Program to reverse a number using a while loop in Java.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

public class demo1 {

    public static void main(String[] args) {

        int num = 2345, reversed = 0;

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

        System.out.println("Reversed Number: " + reversed);
    }
}

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now