Java

Reverse an integer in Java1 min read

Java program to reverse the number entered by the user, then displays the reversed number on the screen.

For example, if the user enters 678 as input, 876 is displayed as output. We use the mod(%) operator in the program to get the digits of an integer.




Java Program Code:

 

Output:

 

Leave a Comment