题解 | #有序序列插入一个数#

有序序列插入一个数

http://www.nowcoder.com/practice/68ae3b28b4a04e098485c4423e2c6548

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] + " ");
        }
    }
}
全部评论

相关推荐

评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务