我正在尝试从事Java任务。这就是它所要求的:
编写一个名为
TestScores
的类。类构造函数应该接受一组测试分数作为其参数。该类应该有一个返回测试分数平均值的方法。如果数组中的测试分数为负或大于100,则该类应抛出IllegalArgumentException
。演示。我需要一个名为TestScores
和TestScoresDemo
的文件。
这是我到目前为止所拥有的。我知道其中有些错误,我需要帮助解决它:
class TestScores {
public static void checkscore(int s) {
if (s<0) throw new IllegalArgumentException("Error: score is negative.");
else if (s>100) throw new IllegalArgumentException("Error Score is higher then 100");
else if (s>89)throw new IllegalArgumentException("Your grade is an A");
else if (s>79 && s<90)throw new IllegalArgumentException("Your grade is an B");
else if (s>69 && s<80)throw new IllegalArgumentException("Your grade is an C");
else if (s>59 && s<70)throw new IllegalArgumentException("Your grade is an D");
else if (s<60)throw new IllegalArgumentException("Your grade is an F");
{
int sum = 0; //all elements together
for (int i = 0; i < a.length; i++)
sum += a[i];
}
return sum / a.length;
}
}
class TestScoresDemo {
public static void main(String[] args) {
int score = 0;
Scanner scanner = new Scanner(System.in);
System.out.print(" Enter a Grade number: ");
String input = scanner.nextLine();
score = Integer.parseInt(input);
TestScores.checkscore(score);
System.out.print("Test score average is" + sum);
}
}
我知道作业需要try
声明,因为在我的书中,这是我在IllegalArgumentException
看到的内容。谁能帮我?我正在使用Eclipse作为IDE。
答案 0 :(得分:3)
您的TestScores
类应该有两个成员:一个接受一系列分数的构造函数和一个返回分数平均值的方法。如果测试分数超出范围,那么这些分配中的哪一个应该抛出IllegalArgumentException
并不完全明确,但我会将其作为构造函数(因为这就是参数)。
public class TestScores {
public TestScores(int[] scores) throws IllegalArgumentException {
// test the scores for validity and throw an exception if appropriate
// otherwise stash the scores in a field for later use
}
public float getAverageScore() {
// compute the average score and return it
}
}
您的TestScoresDemo
课程正确。它首先需要将一组分数收集到一个数组中。然后它应该构造一个TestScores
对象。这是需要在try
/ catch
块内部的内容,因为它可以抛出异常。然后你只需要调用getAverageScore()
并对结果做一些事情。
答案 1 :(得分:0)
异常是用于定义在应用程序的正常流程中不正确的内容。调用方法checkScore时,必须抛出IllegalArgumentException,并且它会在范围之外找到任何参数(介于0和100之间)。
你的班级应该有这样的结构:
public class TestScore {
private int scores[]; //With setters and getters.
public TestScore(int scores[]) {
//Here, you set the scores array to the one on this class.
}
public int getAverage() {
//You do the average here, and since you need to iterate over the
//array to sum each value, you can check the value and if it's not
//ok you throw the IllegalArgumentException. No throws keyword
//required since this kind of exception (like NullPointerException
//and many others) are unchecked exceptions, meaning they can be
//thrown by a method and it does not need to specify them.
}
}
测试类应创建一个TestScore对象,其int数组作为其构造函数的参数。然后你创建一个testAverageScore方法,它上面有try-catch语句,因为它需要调用getAverage方法。
希望有所帮助。祝你好运!。
编辑: IllegalArgumentException是未经检查的例外。
答案 2 :(得分:-2)
public class TestScores {
private final int[] scores;
public TestScores(int[] scores) {
this.scores = scores;
}
public int getAverage() {
int sum = 0;
if(scores.length == 0) {
return 0;
}
for(int score: scores) {
if(score < 0 || score > 100) {
throw new IllegalArgumentException("Score is not valid!");
}
sum += score;
}
return sum/scores.length;
}
}