#include <stdio.h>
#include <windows.h>
#define SIZE 10
#define PAR 72
int main(void)
{
int index, score[SIZE];
int sum=0;
float average;
printf("Enter %d golf scores:
",SIZE);
for (index = 0; index < SIZE; index++)
scanf_s("%d",&score[index]);
for (index = 0; index < SIZE; index++)
printf("%5d", score[index]);
printf("
");
for (index = 0; index < SIZE; index++)
sum += score[index];
average = (float)sum / SIZE;
printf("Sum of scores=%d,average=%.2f
",sum,average);
printf("That's a handicap of %.0f.
",average-PAR);
system("pause");
return 0;
}