fork download
  1. class Ideone
  2. {
  3. public static void main (String[] args) throws java.lang.Exception
  4. {
  5. byte color = 1_2_3;
  6. short yearsAnnoDomini = 2_016;
  7. int socialSecurityNumber = 999_99_9999;
  8. long creditCardNumber = 1234_5678_9012_3456L;
  9. float piFourDecimals = 3.14_15F;
  10. double piTenDecimals = 3.14_15_92_65_35;
  11.  
  12. // Binary, Octal, Hexadecimal examples
  13. short binary = 0b0_1_0_1;
  14. int octal = 07_7_7_7_7_7_7_7_0;
  15. long hexBytes = 0xFF_EC_DE_5E;
  16.  
  17. System.out.println(creditCardNumber);
  18. }
  19. }
Success #stdin #stdout 0.09s 36404KB
stdin
Standard input is empty
stdout
1234567890123456