public class Main { public static void main(String[] args) { float f = 10.56f; Float fObj = new Float(f); System.out.println(fObj); } }