【题目描述】
已知某班有男同学x位,女同学y位,x位男生平均分是87分,y位女生的平均分是85,问全体同学平均分是多少分?
【输入】
男女同学人数。
【输出】
平均分(保留4位小数)。
【题解代码】
#include <iostream>
#include <iomanip>
using namespace std;
int main()
{
double x, y;
cin >> x >> y;
cout <<fixed<<setprecision(4)<< (x * 87 + y * 85) / (x + y);
return 0;
}