能力值:
( LV6,RANK:90 )
8 楼
C是两个数组
private static final byte bpn[] = {
70, 69, 53, 49, 65, 67, 67, 65, 68, 68,
55, 55, 57, 65, 49, 49, 51, 57, 54, 70,
70, 57, 69, 67, 68, 54, 51, 49, 67, 66,
57, 69, 53, 57, 53, 50, 54, 65, 68, 70,
70, 56, 48, 68, 66, 53, 69, 54, 49, 68,
70, 68, 69, 48, 70, 50, 56, 49, 51, 66,
48, 48, 70, 54, 69, 54, 52, 52, 53, 49,
67, 66, 66, 70, 55, 49, 51, 68, 49, 51,
51, 55, 49, 49, 57, 57, 56, 53, 50, 70,
69, 69, 50, 66, 56, 65, 53, 50, 69, 54,
51, 50, 53, 69, 54, 55, 65, 54, 57, 48,
53, 70, 57, 49, 70, 65, 69, 52, 49, 67,
48, 65, 65, 48, 54, 48, 70, 52, 54, 70,
50, 49, 54, 70, 67, 57, 52, 56, 49, 54,
55, 66, 66, 57, 68, 65, 51, 52, 69, 51,
65, 48, 65, 51, 53, 67, 50, 67, 52, 70
};
private static final byte bpd[] = {
55, 51, 48, 50, 56, 49, 66, 67, 49, 66,
52, 66, 68, 52, 67, 68, 48, 55, 56, 70,
57, 52, 65, 68, 51, 48, 51, 54, 50, 69,
49, 51, 57, 54, 49, 55, 52, 50, 53, 50,
57, 55, 48, 50, 65, 70, 56, 67, 67, 50,
68, 53, 52, 57, 52, 69, 51, 70, 48, 69,
48, 67, 57, 48, 55, 50, 65, 51, 55, 69,
69, 57, 48, 66, 70, 69, 50, 68, 52, 54,
70, 53, 68, 49, 54, 50, 54, 69, 69, 55,
48, 53, 54, 49, 66, 49
};
byte[] abyte = new byte[bpn.length+ bpd.length];
System.arraycopy(bpn, 0, abyte, 0, bpn.length);
System.arraycopy(bpd, 0, abyte, bpn.length, bpd.length);
BigInteger bigInteger1 = new BigInteger(new String(abyte),16);
bigInteger1 就是 c 拉