import java.util.Scanner; class Stu{ String sno; double score; public Stu(String sno,double score){ this.sno=sno; this.score=score; } } public class Main{ public static void main(String[] args) { Scanner sc=new Scanner(System.in); int n=sc.nextInt(); int k=sc.nextInt(); Stu[]s=new Stu[n]; for (int i = 0; i < n; i++) { s[i]=new Stu(sc.next(),sc.nextDouble()); } for (int i = 0; i <n-1; i++) { for (int j = 0; j < n-1; j++) { if(s[j].score<s[j+1].score){ Stu t=s[j];s[j]=s[j+1];s[j+1]=t; } } } System.out.print(s[k-1].sno+" "); String[]ss=(s[k-1].score+"").split("[.]"); int a=Integer.parseInt(ss[1]); if(a!=0)System.out.println(ss[0]+"."+a); else System.out.println(ss[0]); } }
0.0分
1 人评分
【绝对值排序】 (C++代码)浏览:721 |
C语言程序设计教程(第三版)课后习题11.3 (C语言代码)浏览:1074 |
C语言程序设计教程(第三版)课后习题10.2 (C语言代码)浏览:565 |
【绝对值排序】 (C语言代码)浏览:894 |
回文数字 (C语言代码)浏览:2540 |
C语言程序设计教程(第三版)课后习题10.1 (C语言代码)浏览:585 |
C语言程序设计教程(第三版)课后习题3.7 (C语言代码)浏览:561 |
钟神赛车 (C语言代码)浏览:665 |
C语言程序设计教程(第三版)课后习题8.4 (C语言代码)浏览:607 |
1218题求大神帮忙看看怎么不能过浏览:759 |