输入三位数,输出平均值并保留三位小数
#include <iostream>
#include <math.h>
using namespace std;
int main()
{
float x, y, z;
cin >> x >> y >> z;
float avg = (x + y + z) / 3;
printf("%.3f", avg);
return 1;
}
在本博客上的内容全部共享公开不收费
转载请注明出处,尊重知识,尊重劳动
对代码或者知识有疑问,可联系博主(qq):2218787597(或邮件投递)