1.进制的转换: (1)十进制转换其他进制:
int n=16;
String result1 = Integer.toBinaryString(n);//10000 转二进制
String result2 = Integer.t
2022-07-23