首页 > 学院 > 开发设计 > 正文

(函数题)4-4 求自定类型元素的平均

2019-11-14 09:43:22
字体:
来源:转载
供稿:网友
4-4 求自定类型元素的平均   

本题要求实现一个函数,求N个集合元素S[]的平均值,其中集合元素的类型为自定义的ElementType

函数接口定义:

ElementType Average( ElementType S[], int N );

其中给定集合元素存放在数组S[]中,正整数N是数组元素个数。该函数须返回NS[]元素的平均值,其值也必须是ElementType类型。

裁判测试程序样例:

#include <stdio.h>#define MAXN 10typedef float ElementType;ElementType Average( ElementType S[], int N );int main (){    ElementType S[MAXN];    int N, i;    scanf("%d", &N);    for ( i=0; i<N; i++ )        scanf("%f", &S[i]);    PRintf("%.2f/n", Average(S, N));    return 0;}/* 你的代码将被嵌在这里 */

输入样例:

312.3 34 -5

输出样例:

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


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表