追加项目成绩

时间:2014-12-11 03:29:14

标签: java append tostring

我还是编程新手,需要在正确的方向上稍微推动一下。该程序从文件读取并计算最高分,平均分数,并删除重复等。然后将他们的项目等级添加到最后,项目成绩" N"被忽略,其他人被追加到最后。我将在帖子的末尾添加文本文件。

说明:

XcelStudent

  

XcelStudent扩展了学生。 XcelStudent有一个String实例   变量projectGrade,由XcelStudent构造函数设置:   public XcelStudent(String name,int id,int totalGrades,String   projectGrade)这个构造函数应该调用超类构造函数   实例化Student实例变量。

     

覆盖computeScore()方法。应该给学生打电话   computeScore方法获得初始成绩,然后添加   项目的适当点数:1表示" C" 2表示a   " B"和4" A"。

     

toString()方法应该从Student调用toString方法   得到一个初始字符串,然后追加"项目:" + projectGrade to   它

我相信这部分的第一部分是完整的,我已经检测了四个等级,但我不确定如何将它们追加到最后。

public class XcelStudent extends Student{

    public String projectGrade;

    public XcelStudent(String name, int id, int totalGrades, String norX) {
        super(name, id, totalGrades);

        int points;
        if(norX.equals("C")){
            projectGrade = "C";
            //points = 1;
            System.out.println(" project:" + projectGrade);
        }
        if(norX.equals("B")){
            projectGrade = "B";
            //points = 2;
            System.out.println(" project:" + projectGrade);
        }
        if(norX.equals("A")){
            projectGrade = "A";
            //points = 4;
            System.out.println(" project:" + projectGrade);
        }
    }

    public static void main(String[] args) {


    }

}

我的Student.java中的当前toString和computeScore

public String toString() {
        String res = name + "\t" + id + " ";
        for (int i=0; i < totalGrades; i++) {
            res += " " + grades[i];
        }
        res += "\tscore: " + new DecimalFormat("0.00").format(computeScore());
        return res;
    }


@Override
    public double computeScore() {
        double total = 0;
          if (numGrades == 0) {
            return total;
          }
          if (numGrades > grades.length) {
            numGrades = grades.length;
          }
          for (int i = 0; i < numGrades; i++) {
            total += grades[i];
          }

          if (total > topscore){
              topscore = total;
          }
          avgscore += total;

          return total / grades.length;
    }

当前输出:(我知道它没有排序)

Course cs161: 5 grades
 project:C
 project:A
 project:A
 project:B
Top Score: 90.0
Avg Score: 76.16
Course: cs161
Adam    2143  85 95 85 75 65    score: 81.00
John    1243  60 70 80 55 55    score: 64.00
Mick    1324  70 60 70 80 90    score: 74.00
Ellen   2341  90 95 88 77 66    score: 83.20
Jim     1234  50 40 50 60 70    score: 54.00
Lena    1423  99 50 90 90 85    score: 82.80
Leila   1432  60 70 60 70 60    score: 64.00
Mike    1342  60 70 80 90 99    score: 79.80
Ada     2134  90 90 90 90 90    score: 90.00
Helen   2314  89 79 99 89 88    score: 88.80

期望的输出:

Course cs161: 5 grades
Top Score: 92.0
Avg Score: 77.26
Course: cs161
Jim     1234  50 40 50 60 70    score: 54.00
John    1243  60 70 80 55 55    score: 64.00
Mick    1324  70 60 70 80 90    score: 75.00 project: C
Mike    1342  60 70 80 90 99    score: 79.80
Lena    1423  99 50 90 90 85    score: 86.80 project: A
Leila   1432  60 70 60 70 60    score: 64.00
Ada     2134  90 90 90 90 90    score: 92.00 project: B
Adam    2143  85 95 85 75 65    score: 81.00
Helen   2314  89 79 99 89 88    score: 88.80
Ellen   2341  90 95 88 77 66    score: 87.20 project: A

文件:

Adam    2143 N  85 95 85 75 65
adam2   2143 N   0  0  0  0  0
John    1243 N  60 70 80 55 55
John2   1243 N   0  0  0  0  0
Mick    1324 C  70 60 70 80 90
Ellen   2341 A  90 95 88 77 66
Jim     1234 N  50 40 50 60 70
Lena    1423 A  99 50 90 90 85
Leila   1432 N  60 70 60 70 60
Mike    1342 N  60 70 80 90 99
Ada     2134 B  90 90 90 90 90
Helen   2314 N  89 79 99 89 88

感谢您的帮助!

1 个答案:

答案 0 :(得分:0)

如果我理解你的问题,你基本上需要在XcelStudent中创建一个新的toString方法(覆盖它)并调用Parent的#String。有点像这样:

@Override
public String toString() {

    return super.toString() + "project: " + projectGrade;
}

对于您必须添加分数的部分,您可以再次覆盖针对XcelStudent的computeScore并调用Parent的方法并只添加&#34;分数&#34;基于字母等级。你可以通过尝试来解决这个问题(提示:类似于上面的toString方法) - 我不想为你做功课。

另一个侧面相关的事情是你应该使用受保护/私有方法,除非你有充分的理由将这些方法公之于众。