Guest User

Untitled

a guest
Apr 22nd, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. public class RadixExample {
  2.  
  3. public static void main(String[] args) {
  4. System.out.println(010); // radix = 8
  5. System.out.println(0b10101101); // radix = 2
  6. System.out.println(0xABBA); // radix = 16
  7. }
  8. }
Add Comment
Please, Sign In to add comment