c for循环中的编程测验平均数组

时间:2012-10-09 03:46:21

标签: c arrays

我遇到了问题。我正在尝试在此程序分配中找到QUIZZES的平均值。这是我的代码。 Bold中的代码是我的问题所在。

 #include <stdlib.h>
 #include <stdio.h>
 #define STUDENTS 4
 #define QUIZZES 5

 main () {

int quizScores [STUDENTS] [QUIZZES] = {
    { 90, 90, 90, 90, 90 },
    { 90, 80, 70, 60, 50 },
    { 90, 89, 88, 87, 86 },
    { 90, 85, 80, 75, 70 }
 };
 int studentTotal = 0, quizTotal, row, col;
 double studentAverage, quizAverage;

 for ( row = 0; row < STUDENTS; row++) {
     studentTotal = 0;
     for ( col = 0; col < QUIZZES; col++) {
         studentTotal += quizScores[row][col];
     }
     studentAverage = (double) studentTotal / QUIZZES;
     printf("Student %i has average %.2lf\n", row, studentAverage);
 }

 **for ( col = 0; col < QUIZZES; col++) {
     quizTotal = 0;
     for ( row = 0; row < STUDENTS; row++) {
         quizTotal += quizScores[col][row];  
     }
     quizAverage = (double) quizTotal / STUDENTS;
     printf("Quiz %i has an average %.2lf\n",col, quizAverage);
     // output the average for this quiz
 }**

system("pause");
}

1 个答案:

答案 0 :(得分:1)

您在quizTotal += quizScores[col][row];中混淆了指数。它应该是quizTotal += quizScores[row][col];