Java Integer.reverse(int i)
Syntax
Integer.reverse(int i) has the following syntax.
public static int reverse(int i)
Example
In the following code shows how to use Integer.reverse(int i) method.
The following code reverse decimal value 10 in binary format.
public class Main {
public static void main(String[] args) {
/*from w w w .ja v a2 s . co m*/
System.out.println(Integer.reverse(10));
}
}
The output: