本帖最后由 chouwayメ 于 2013-10-8 22:50 编辑
多码码代码,练练手。。。{:soso_e129:}- import java.util.*;
- public class DataTest
- {
- public static void main(String[]args)
- {
- int[]a={3,2,5,7,9,8};
- int[]b={1,2,5,7,6,4};
- int[]c=new int[a.length+b.length];// 创建准备正好装a、b的数组
- for(int i=0;i<c.length;i++)
- {
- if(i<a.length)
- c[i]=a[i]; //前面0---(a.length-1) 复制a数组
- else
- c[i]=b[i-a.length]; //后面的复制b数组的值。
- }
- Arrays.sort(c); // 调用工具类的sort方法进行排序
- for(int i=0;i<c.length;i++)
- {
- System.out.print(c[i]); //输出c数组
- }
- }
- }
复制代码 |