// review before ITS lab visit! public class class3_division { public static void main ( String[] args) { int x, y ; double z; char a; x = 12; y = 5; z = (double) x / y ; a = 'D'; System.out.println("x has a value of " + x); System.out.println("y has a value of " + y); System.out.println("x divided by y is " + z); System.out.println("a is the character " + a); System.exit(0); } }