题解 | #输入整型数组和排序标识对元素按照升序或降序排序#

输入整型数组和排序标识,对其元素按照升序或降序进行排序

https://www.nowcoder.com/practice/dd0c6b26c9e541f5b935047ff4156309

import java.util.*;

// 不知道为什么这道题通过率这么低
public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        while(sc.hasNext()){
            int n = sc.nextInt();
            int[] nums = new int[n];
            for(int i = 0; i < n ;i++){
                nums[i] = sc.nextInt();
            }
            Arrays.sort(nums);
            int flag = sc.nextInt();
            if(flag==0){
                for(int num : nums){
                    System.out.print(num+" ");
                }
            }
            if(flag==1){
                for(int j = n-1;j>=0;j--){
                    System.out.print(nums[j]+" ");
                }
            }
        }
    }
}
全部评论

相关推荐

09-27 00:29
东北大学 Java
伟大的麻辣烫:查看图片
阿里巴巴稳定性 75人发布 投递阿里巴巴等公司10个岗位
点赞 评论 收藏
分享
10-28 15:45
门头沟学院 C++
西南山:海康威视之前不是大规模裁员吗
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务