fork download
  1.  
  2. class Ideone {
  3. public static void main (String[] args) throws java.lang.Exception
  4. {
  5. byte b = -1;
  6. System.out.printf("%02x%n", b);
  7. b = shift(b);
  8. System.out.printf("%02x%n", b);
  9. }
  10.  
  11. static byte shift(byte b) {
  12. b >>>= 4;
  13. return b;
  14. }
  15. }
Success #stdin #stdout 0.08s 34024KB
stdin
Standard input is empty
stdout
ff
ff