int a; double d; float fNum; a = 4; d = 45.7; fNum = 6.78f; System.out.println(a); System.out.println(d); System.out.println(fNum);