import java.lang.Integer; public class Main { public static void main(String args[]) { Integer a = new Integer(56); float b = a.floatValue(); System.out.println(b); } } Producción : 56.0 Utilice el método de conversión de tipos para convertir un entero en un flotante en Ja...