标签:name mes print using 输入 ios oat 输出 int
#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;
}
标签:name mes print using 输入 ios oat 输出 int
原文地址:https://www.cnblogs.com/TyranRex/p/12146941.html