输入三位数,输出平均值并保留三位小数
Posted tyranrex
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了输入三位数,输出平均值并保留三位小数相关的知识,希望对你有一定的参考价值。
#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;
}
以上是关于输入三位数,输出平均值并保留三位小数的主要内容,如果未能解决你的问题,请参考以下文章