Advertisement
T99

Java Byte to Human Readable Byte Converter

T99
Mar 19th, 2018
166
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.10 KB | None | 0 0
  1. public static int byteConverter(int b) {
  2.    
  3.     if (b < 0) return -(-128 - (b + 128));
  4.     else return b;
  5.  
  6. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement