|
|
От: |
fefelov
|
|
| Дата: | 28.07.05 17:39 | ||
| Оценка: | |||
public class A {
public static void main(String[] args) {
byte b = (byte) 128;
int i = b;
System.out.println(i);
System.out.println(Integer.toHexString(i));
}
}