//FloatVariables - Uses variables of two of the floating-point types public class FloatVariables { public static void main(String[] args) { float number1; double number2; number1 = 1.5234F; number2 = 1.5124573256732; System.out.println("Integer in percision of float: " + number1); System.out.println("Integer in percision of double, but not float: " + number2); } }