1. 程式人生 > >23.零起點學算法21——求平均值

23.零起點學算法21——求平均值

() != nbsp span eof std printf 均值 平均值

#include<stdio.h>
int main()
{
    double a,b,c;
    while(scanf("%lf %lf %lf",&a,&b,&c)!=EOF)
    {
        printf("%.3f\n",(a+b+c)/3);
    }
    return 0;
}

23.零起點學算法21——求平均值