1. 程式人生 > >6-4 求自定型別元素的平均 (10 分)

6-4 求自定型別元素的平均 (10 分)

[本題要求實現一個函式,求N個集合元素S[]的平均值,其中集合元素的型別為自定義的ElementType。

題目原址

ElementType Average( ElementType S[], int N )
{
    double sum=0;
    double average;
    int i;
    for(i=0;i<N;i++)
    {
        sum+= S[i];
    }
    average=sum/N;
    return average;
}