...的课程成绩,然后按照学生成绩的降序打印学生的学号.

发布网友 发布时间:2024-10-23 23:25

我来回答

2个回答

热心网友 时间:2024-11-01 16:06

import java.util.Scanner;

class StudentInfo {
private String stuno;
private int score;

public String getStuno() {
return stuno;
}

public void setStuno(String stuno) {
this.stuno = stuno;
}

public int getScore() {
return score;
}

public void setScore(int score) {
this.score = score;
}

}

public class Test205 {

public static void main(String[] args) {

StudentInfo[] stu = new StudentInfo[20];
Scanner scan = new Scanner(System.in);
int nCount = 0;
System.out.println("请输入输入的学生个数:");
nCount = scan.nextInt();
System.out.println("请输入输入的学生学号和分数(以空格隔开):");

int nCurrent = 0;
while (nCurrent < nCount) {
Scanner sca = new Scanner(System.in);
String strLine = sca.nextLine();

String[] strLineArr = strLine.split(" ");
StudentInfo st = new StudentInfo();
st.setStuno(strLineArr[0]);
st.setScore(Integer.parseInt(strLineArr[1]));
stu[nCurrent] = st;
nCurrent++;
}

// 排序
for (int i = 0; i < nCount; i++) {
for (int j = 0; j < nCount - i - 1; j++) {
if (stu[j].getScore() > stu[j + 1].getScore()) {
StudentInfo tmp = new StudentInfo();
tmp.setStuno(stu[j].getStuno());
tmp.setScore(stu[j].getScore());

stu[j].setStuno(stu[j + 1].getStuno());
stu[j].setScore(stu[j + 1].getScore());

stu[j + 1].setStuno(tmp.getStuno());
stu[j + 1].setScore(tmp.getScore());
}
}
}
// 输出学生信息
System.out.println("学号    分数");

for (int i = 0; i < nCount; i++) {
System.out.println(stu[i].getStuno() + "   " + stu[i].getScore());
}

}

}

运行结果如下:

热心网友 时间:2024-11-01 16:07

建一个学生类啊,有学号和成绩两个属性

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com