摘要: 1 package cn.it; 2 3 import java.util.Arrays; 4 // 利用分治思想 实现 归并排序 5 public class Fz { 6 public static void main(String[] args) { 7 int ... 阅读全文
posted @ 2015-05-05 18:43 Object_mo 阅读(169) 评论(0) 推荐(0) 编辑
摘要: 1 //1~10000000之间所有7的倍数和末尾含7的数一共有多少个呢 2 public class test { 3 public static void main(String[] args) { 4 int[] i={1,2,3,4,5,6,7,17}; 5 ... 阅读全文
posted @ 2015-05-05 17:06 Object_mo 阅读(191) 评论(0) 推荐(0) 编辑
mozhuhao