//Sample05_63.java class Sample05_63 { public static void main(String[] args){ char dice = 'B'; boolean bool = dice =='A'; System.out.println("A ? " + bool); bool = dice =='B'; System.out.println("B ? " + bool); bool = dice =='C'; System.out.println("C ? " + bool); System.out.println("dice: " + dice); System.out.println("code: " + (int)dice); } }