【文件属性】:
文件名称:求某个学生的平均值-C语言学习资料
文件大小:633KB
文件格式:PPT
更新时间:2024-05-15 11:35:53
C语言
求某个学生的平均值
#include
void ave(float (*p)[3],int n);
void main()
{ int num;
float score[5][3]={{65,98,76},{78,69,87},
{67,68,81},{80,65,98},{64,83,79}};
printf("please input number of student, I will tell you his average score:");
scanf("%d",&num);
ave(score, num);
getch();
}
void ave(float(*p)[3], int n) /*对p指向的二维数组中第n行的数据求和*/
{ int i;
float average=0;
printf("the average score of NO.%d are:",n);
for(i=0;i<3;i++) /*对第n行的数据求和*/
average=*(*(p+n)+i)+average;
average=average/3;
printf("%5.2f",average);
}