0

在这段代码中,我想找出一个学生的最高分,以及所有分数的平均值。通过用户输入将标记放入 ArrayList 中。我已经完成了一半,但不知道如何完成它,我想知道如何找到最高分。

谢谢。

import java.util.*;
import java.lang.*;
class Course
{
    private ArrayList<Student> people = new ArrayList<Student>();

    public void add( Student s )
    {
        people.add( s );
    }
    //Return the number of students who passed (mark>= 40)
    public int pass()
    {
        int count = 0;
        for ( int i=0; i < people.size(); i++ )

        {
            int mark = people.get(i).getMark();
            if(mark < 40){
                count = count +1;
            }
        }

        return count;
    }

    public int fail()
    {
        int count = 0;
        for ( int i=0; i < people.size(); i++ )

        {
            int mark = people.get(i).getMark();
            if(mark < 40){
                count = count +1;
            }
        }

        return count;
    }

   public String top()
   {

   }

    public double average()
    {
        int sum=0;

        for (int i=0; i < people.size(); i++ )
        {
            double average = sum / (double) i;
        }

        return sum;
    }

}
4

5 回答 5

1

使用Collections.max(people, yourComparator)where yourComparatorusesgetMark作为比较字段:您可以这样做:

Student maxStudent = Collections.max(people, new Comparator<Student>() {
    @Override
    public int compare(Student first, Student second) {
        if (first.getMark() > second.getMark())
            return 1;
        else if (first.getMark() < second.getMark())
            return -1;
        return 0;
    }
});
于 2013-03-11T19:10:56.007 回答
0

您可以通过在 add(Student) 方法中收集统计信息来完成此操作:

public class Course {
    private ArrayList<Student> people = new ArrayList<Student>();
    private int passing = 0;
    private int failing = 0;
    private int top = Integer.MIN_VALUE;
    private int sum = 0;

    public void add( Student s ) {
        people.add( s );
        if(s.getMark() >= 40){
            passing++;
        }
        else {
            failing++;
        }
        sum += s.getMark();
        if(s.getMark() > top) {
            top = s.getMark();
        }
    }

    public int pass() {
        return passing;
    }

    public int fail() {
        return failing;
    }

    public int top() {
        return top;
    }

    public double average() {
        return sum / people.size();
    }
}

要直接回答您的问题,只需将每个标记与最大找到标记进行比较即可找到顶部。通过将总和除以标记数来找到平均值。

于 2013-03-11T19:12:46.680 回答
0

为了获得最高分,您创建一个变量,每次找到更高的分数时都将其替换。如果您已经在循环,您可以通过将循环中的所有标记相加并将其除以总人数来找到平均值。在这里,我在同一个循环中完成了两者:

int totalMark = 0;
int topMark = 0;
for (int i=0; i< people.size(); i++) {
    int mark = people.get(i).getMark(); 
    if (mark > topMark) {
        topMark = mark;
    }
    totalMark += mark;
}
int averageMark = totalMark / people.size();
于 2013-03-11T19:11:12.963 回答
0

检查这个。它可能会帮助你。

Java程序查找除前三名之外的所有数字的平均值

于 2013-07-27T03:22:43.940 回答
0

您可以使用您的类实现Comparable接口(http://docs.oracle.com/javase/6/docs/api/java/lang/Comparable.html),Student然后使用Collectionshttp://docs.oracle.com/javase /1.4.2/docs/api/java/util/Collections.html)要使用的类maxmin函数来获取最大和最小等级值。要获得平均成绩值,您只需迭代ArrayList制作成绩值的总和,最后将总和除以ArrayList.size().

于 2013-03-11T19:58:35.537 回答