2. 6. 8. Integer.reverseBytes( ) reverses the order of the bytes in num and returns the result
public class MainClass { public static void main(String args[]) {
System.out.println(Integer.reverseBytes(10));
System.out.println(Integer.reverseBytes(-10));
System.out.println(Integer.reverseBytes(0));
}
}