我有一个家庭作业问题,我必须记录成绩,将它们放在一个数组中,然后给出平均值。该程序应该要求输入,直到给出一个负数作为成绩或数组被填充。到目前为止,我能够让程序循环,直到我给出一个负数,它计算出正确的平均值。我想不通的是如何在数组被填充时终止循环。我的代码:
#include <stdio.h>
/* function main begins program execution */
int main( void )
{ int counter; /* number of grade to be entered next */
int grade; /* grade value */
int total; /* sum of grades input by user */
double average; /* average of grades */
/* initialization phase */
total = 0; /* initialize total */
counter = 0; /* initialize counter */
grade = 0; /* initialize grade */
printf( "Input a negative number when done entering grades.\n" );
/* processing phase */
#define MAX_GRADES 20
int grades [MAX_GRADES];
while ( counter < MAX_GRADES) {
while ( grade >= 0 ) { /* loop until negative given */
printf( "Enter grade: " ); /* prompt for input */
scanf( "%d", &grade ); /* read grade from user */
if (grade >= 0) {
if (grade > 100)
printf( "Grade is greater than 100. Please input grade again.\n" );
else {
grades[counter] = grade;
total = total + grade; /* add grade to total */
counter = counter + 1;
} /* end else */
} /* end if */
} /* end while */
} /* end while */
/* termination phase */
average = total /(double) counter; /* integer division */
printf( "Class average is %f\n", average ); /* display result */
return 0; /* indicate program ended successfully */
} /* end function main */