import java.util.Scanner; class Student{ public String Name; public String Sex; public int Age; public int Score; } public class Main { public static void main(String[] args) { Scanner sc=new Scanner(System.in); int n=sc.nextInt(); Student[]s=new Student[n]; for (int i = 0; i < s.length; i++) { s[i]=new Student(); s[i].Name=sc.next(); s[i].Sex=sc.next(); s[i].Age=sc.nextInt(); s[i].Score=sc.nextInt(); } for (int i = 0; i < s.length-1; i++) { for (int j = 0; j < s.length-1; j++) { if(s[j].Score>s[j+1].Score){ String temp=s[j].Name; s[j].Name=s[j+1].Name;s[j+1].Name=temp; temp=s[j].Sex; s[j].Sex=s[j+1].Sex;s[j+1].Sex=temp; int temp2=s[j].Age; s[j].Age=s[j+1].Age;s[j+1].Age=temp2; temp2=s[j].Score; s[j].Score=s[j+1].Score;s[j+1].Score=temp2; } } } for (int i = 0; i < s.length; i++) { System.out.println(s[i].Name+" "+s[i].Sex+" "+s[i].Age+" "+s[i].Score); } } }
0.0分
1 人评分
wu-淘淘的名单 (C++代码)浏览:1532 |
C语言程序设计教程(第三版)课后习题8.8 (C语言代码)浏览:672 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:468 |
C语言程序设计教程(第三版)课后习题9.8 (C语言代码)浏览:702 |
前10名 (C语言代码)浏览:773 |
链表数据求和操作 (C语言代码)浏览:1035 |
C语言程序设计教程(第三版)课后习题11.8 (C语言代码)浏览:1060 |
简单的a+b (C语言代码)浏览:587 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:469 |
发工资咯 (C语言代码)浏览:815 |