输入三位数,输出平均值并保留三位小数


#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;
}

posted @ 2020-01-03 21:00  TyranRex  阅读(753)  评论(0编辑  收藏  举报