fork(2) download
  1. class Ideone
  2. {
  3. public static void main (String[] args) throws java.lang.Exception
  4. {
  5. String number="0.2";
  6. float f = Float.parseFloat(number);
  7. System.out.println("Result of roundtrip String -> float -> String: "+f);
  8. }
  9. }
Success #stdin #stdout 0.1s 320576KB
stdin
Standard input is empty
stdout
Result of roundtrip String -> float -> String: 0.2