/* Java version of code in Lecture 3 * * What is this code 'meant' to do? * What does this code 'actually' do? * * * Compile: javac Float2.java * * Run: java Float2 */ public class Float2 { public static void main(String [] args) { float x = 123456789.0f; System.out.printf("%f + 1 = %f\n", x, x + 1); } }