编写函数float compuate_GPA(char grades[],int n)
编写函数:float compuate_GPA(char grades[],int n);其中grades数组包含字母等级(A、B、C、D或F),n是数组长度。函数返回值应返回登记的平均值(假定A‘=4,B=3,C=2,D=1,F=0)。解题思路:需要两个循环语句if和switch。注:数组的小标是从0开始的。代码如下:#include<stdio.h>float compute_GPA(char grade[],int n);float compute_GPA(ch