摘要: 数组 /* 【程序填空】功能:数组名作为函数参数,求平均成绩。 */#include <stdio.h>float aver(float a[ ]) /*定义求平均值函数,形参为一浮点型数组名*/{ int i; float av,s=a[0]; for(i=1;i<5;i++) /******** 阅读全文
posted @ 2020-05-30 14:50 PointerK 阅读(274) 评论(0) 推荐(0)