// This class is used to show some examples of operator manipulations class OperatorExample { public static void main(String args[]) { int example_int = 31; short example_short = 2; byte example_byte; long example_long; float example_float = 2.0F; example_float = example_int / example_short; System.out.println( "This example prints out a short" + " " + example_float); } }