这个何解?
#include<stdio.h>#define SIZE 10
#define PAR 72
int main(void)
{
int index,score[SIZE];
int sum=0;
float average;
printf("Enter %d golf scores: \n",SIZE);
for(index=0;index<SIZE;index++)
scanf"%d",&score[index]);
printf('The scores read in are as follows: \n");
for(index=0;index<SIZE;index++)
printf("%5d",score[index]);
printf("\n");
for(index=0;index<SIZE;index++)
sum+=score[index];
average=(float)sum/SIZE;
printf("Sum of scores=%d,average=%.2f\n",sum,average);
printf("That's a handcap of %.0f.\n",average-PAR);
return 0;
}
中的scanf"%d",&score[index]),用的是index而不是SIZE呢?
是不是要将读入的数复制给index,所以用这个?那这个score又是干什么用的?
[ 本帖最后由 minand 于 2011-3-18 20:53 编辑 ]