编写JAVA程序,实现两个数组的合并,并按升序排列合并后的数组

日期:2017-10-04 06:54:44 人气:1

编写JAVA程序,实现两个数组的合并,并按升序排列合并后的数组

package test;import java.util.Arrays;import java.util.Comparator;public class JButtonTest{ public static void main ( String[] args ) { int[] arr1 = { 3, 1, 23 }; int[] arr2 = { 27, 7, 2 }; String temp = Arrays.toString (arr1) + Arrays.toString (arr2);
    A+
热门评论