import static java.lang.System.out;
class u1a {
public static void main (String[] args) {
byte b;
int i;
i = 256;
b = (byte) i;
out.printf (“b: 0x%x %d, i: 0x%x %d\n”, b, b, i, i);
}
}
import static java.lang.System.out;
class u1a {
public static void main (String[] args) {
byte b;
int i;
i = 256;
b = (byte) i;
out.printf (“b: 0x%x %d, i: 0x%x %d\n”, b, b, i, i);
}
}