题解 | #成绩排序#

成绩排序

https://www.nowcoder.com/practice/8e400fd9905747e4acc2aeed7240978b

import java.util.*;

// 注意类名必须为 Main, 不要有任何 package xxx 信息
public class Main {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        // 注意 hasNext 和 hasNextLine 的区别
        while (in.hasNextLine()) { // 注意 while 处理多个 case
            int n = Integer.parseInt(in.nextLine());
            int flag = Integer.parseInt(in.nextLine());
            String[] str = new String[n];
            for(int i = 0;i < n;i++){
                str[i] = in.nextLine();
            }
            if(flag == 1){
                Arrays.sort(str, (s1,s2) -> Integer.parseInt(s1.split(" ")[1])-Integer.parseInt(s2.split(" ")[1]));
            } else {
                Arrays.sort(str, (s1,s2) -> Integer.parseInt(s2.split(" ")[1])-Integer.parseInt(s1.split(" ")[1]));     
            }
            for(String s : str){
                System.out.println(s);
            }
        }
    }
}

全部评论

相关推荐

头像
10-09 19:35
门头沟学院 Java
洛必不可达:java的竞争激烈程度是其他任何岗位的10到20倍
点赞 评论 收藏
分享
喜欢走神的孤勇者练习时长两年半:爱华,信华,等华,黑华
点赞 评论 收藏
分享
1 收藏 评论
分享
牛客网
牛客企业服务