public class Demo { public static void main(String args[]) { float f = 0.9F; String s = Float.toString(f); System.out.println(s); } }