// This class is used to show some examples of character and string manipulations class CharString { public static void main(String args[]) { int x = 150; float y, z; y = x / 60; z = (float) x / 60; System.out.println( "This example prints out y" + " " + y); System.out.println( "This example prints out z" + " " + z); } }