fork(1) download
  1. /* package whatever; // don't place package name! */
  2.  
  3. /* The class name doesn't have to be Main, as long as the class is not public. */
  4. class Main
  5. {
  6. public static void main (String[] args) throws java.lang.Exception
  7. {
  8. String i1 = "12345678";
  9. String i2 = "3";
  10. double d1 = Double.parseDouble(i1);
  11. double d2 = Double.parseDouble(i2);
  12. double d = d1 + d2;
  13. System.out.println( String.format("%f", d) );
  14. }
  15. }
Success #stdin #stdout 0.08s 212416KB
stdin
Standard input is empty
stdout
12345681.000000