麻烦写下C语言程序。。题目:编写一个求三个数的平均值函数。

2025-03-07 10:41:07
推荐回答(1个)
回答1:

float func(int a,int b,int c)
{
return (a+b+c)/3.0;
}