二进制转其他进制
Math.pow(进制,次方)
比如Math.pow(2,4);
就是2的4次方
如运算11111 就是Math.pow(2,1)+Math.pow(2,2)+......
System.out.println(Math.pow(2,7));
Math.pow(进制,次方)
比如Math.pow(2,4);
就是2的4次方
如运算11111 就是Math.pow(2,1)+Math.pow(2,2)+......
System.out.println(Math.pow(2,7));