计算机c语言求数组平均值,题目如图

2024年11月28日 05:52
有1个网友回答
网友(1):

人数不定,可以输入任意人数的分数,规定以回车键结束即可。

#include 
void main(){
int i=1,score,max,min;
float s=0;char ch;
scanf("%d",&score);
max=score;min=score;s+=score;
while((ch=getchar())!='\n')
{
scanf("%d",&score);
s+=score;i++;
if(maxif(min>score) min=score;
}
printf("%.2f\n%d %d",s/i,max,min);
}

运行示例: