二进制转为八进制和十六进制
摘要:
/*思想:由于三(四)位二进制等于一位八(十六)进制 。找到毗邻数组长度最小的3(4)的倍数,作为新数组长度。多余位数(高位)用0补齐。*/ public class PracticeDemo { public static void BtoOHex(int n,String s) { int m 阅读全文
posted @ 2020-02-15 15:50 万水千山走过 阅读(393) 评论(0) 推荐(0) 编辑