题解 | #有序序列插入一个整数#
有序序列插入一个整数
http://www.nowcoder.com/practice/444e87f938464906a1649cff236b102b
import java.util.Scanner;
import java.util.Arrays;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int n = sc.nextInt();
int[] array = new int[n+1];
for(int i = 0 ; i < n ; i ++) {
array[i] = sc.nextInt();
}
array[n] = sc.nextInt();
Arrays.sort(array);
for(int i = 0 ; i < n + 1 ; i ++) {
System.out.print(array[i] + " ");
}
}
}