Java将两个数组a:{1,7,9,11,13,15,17,19}和数组b:{2,4,6,8,10}合并为数组c,并按升序排列
时间: 2024-05-11 15:17:21 浏览: 85
java面试题及答案(基础题122道,代码题19道).txt
好的,这个问题很简单,可以使用Java的Arrays类的sort和copyOf方法来实现。下面是示例代码:
```java
int[] a = {1, 7, 9, 11, 13, 15, 17, 19};
int[] b = {2, 4, 6, 8, 10};
// 合并数组a和b
int[] c = Arrays.copyOf(a, a.length + b.length);
System.arraycopy(b, 0, c, a.length, b.length);
// 对数组c进行升序排序
Arrays.sort(c);
// 输出结果
System.out.println(Arrays.toString(c));
```
输出结果为:`[1, 2, 4, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19]`
阅读全文