これを行うための正しいコードは何ですか:
calculatePercentage
パラメータint exam[][] int percentages[]
とreturntypeで呼び出される新しいメソッドvoid
?
このメソッドは、にストックされているすべてのパーセンテージを計算する必要がありますint exam[][]
。これに保存されているオブジェクトexam[][]
は、/20の結果です。パーセンテージは/100でなければなりません。
うまくいくかわからないので、どうもありがとうございました。
Exam[][]のデータの挿入方法
private void insertExamResults(int array[][])
{
int[] exam = new int[3];
for (int teller = 0; teller < 3; teller++)
{
int i = 0;
exam[i] = Integer.parseInt(JOptionPane.showInputDialog("Exams of student " + teller + " (max = 5)"));
i++;
}
}
私が書いた新しい方法:
public void calculatePercentage(int exam[][], int percentages[])
{
for (int i = 0; i < 3; i++)
for (int j = 0; j < 5; j++)
{
//code for the sum of all elements on row
//stock this new value in a new array percentages[]
}
}
ダブルアレイ試験には、3行と5列があります。