题解 | #成绩排序#

成绩排序

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);
            }
        }
    }
}

全部评论

相关推荐

三年之期已到我的offer快到碗里来:9硕都比不上9本
点赞 评论 收藏
分享
1 收藏 评论
分享
牛客网
牛客企业服务