public class MainClass { public static void main(String[] argv) throws Exception { Float A = new Float(1.0F); String S = "value is " + A; System.out.println(S); } }