0

执行此操作的正确代码是什么:

calculatePercentage使用参数int exam[][] int percentages[]和返回类型调用的新方法void

该方法必须计算所有已入库的百分比int exam[][]。存储在其中的对象exam[][]是 /20 上的结果。百分比必须为 /100。

非常感谢你,因为我不知道这行得通。

检查[][]中的数据是如何插入的

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 列。

4

1 回答 1

0

从这样的事情开始:

for (int i=0; i < 8; i++)
   for (int j=0; j < 8; j++)
      board[i][j] = i+j;
于 2012-12-14T20:41:57.043 回答