//PROGRAM 10-5 class DemoWrite { public static void main(String[] args) { int i = 'A'; byte b = 65; char c = 'B'; System.out.write(i); System.out.write(b); System.out.write(c); } }