2017年2月24日
摘要: /* * 输入数字对应的英文组合,输出对应的数字组合 */ private void test(){ Map map = new HashMap(); map.put("zero", 0); map.put("one", 1); map.put("two", 2); map.put("three", 3); map.put("four", 4); map.... 阅读全文
posted @ 2017-02-24 16:39 leeliwen 阅读(304) 评论(0) 推荐(0) 编辑