|
|
От: |
Blazkowicz
|
|
| Дата: | 18.05.05 08:18 | ||
| Оценка: | |||
int i = Integer.MAX_VALUE;
int l = i & 0x0000FFFF;
int h = i & 0xFFFF0000;
h = h >> 16;
System.out.printf("%h",l);
System.out.println();
System.out.printf("%h",h);