摘要: 阅读全文
posted @ 2014-01-03 10:23 一路向北中 阅读(100) 评论(0) 推荐(0)
摘要: 1 public class Day043 2 { 3 // 查表法进制转换 4 public static void main(String[] args) 5 { 6 System.out.print(getChange(16, 8)); 7 } 8 // 定义数组 9 static char[] arr = new char[]{'0', '1', '2', '3', '4', '5', '6', '7', '8',10 '9', 阅读全文
posted @ 2014-01-03 09:49 一路向北中 阅读(292) 评论(0) 推荐(0)