fork(1) download
  1. class Ideone {
  2. public static void main(String[] args) throws java.lang.Exception {
  3. {
  4. float f = Float.valueOf(0x123);
  5. float g = Float.valueOf(0123);
  6. double h = Double.valueOf(0123);
  7. System.out.printf("%s %s %s%n", f, g, h);
  8. }
  9.  
  10. {
  11. float f = 0x123f;
  12. float g = 0123f;
  13. double h = 0123d;
  14. System.out.printf("%s %s %s%n", f, g, h);
  15. }
  16. }
  17. }
  18.  
Success #stdin #stdout 0.1s 27932KB
stdin
Standard input is empty
stdout
291.0 83.0 83.0
4671.0 123.0 123.0