求平均分,我哪儿错了,请大佬指点~

#include
#include
using namespace std;

int main(){
int x=2,y=3,a;
cin>>x>>y;
(double)(87x+85y)/(x+y)=85.5;
a=85.8;
cout<<fixed<<setprecision<<a;
return 0;
}

5 个赞

题面

4 个赞

题目描述:

已知某班有男同学x位,女同学y位,x位男生平均分是87分,y位女生的平均分是85,问全体同学平均分是多少分?

输入格式:

整数x和y,分别代表男女同学人数。

输出格式:

平均分(保留4位小数)。

输入样例:

2 3
输出样例:

85.8000

C++
评测规则
加载最近代码
1

最新编译结果
提交代码

4 个赞

#include <bits/stdc++.h>

using namespace std;

int a[100010];

int main()

{

double x, y;

cin >> x >> y;

printf(“%.4lf”, (87 * x + 85 * y) / (x + y));

}

1 个赞

解决方案

1 个赞
#include <bits/stdc++.h>
using namespace std;

int a[100010];

int main()
{
	double x, y;
	cin >> x >> y;
	printf("%.4lf", (87 * x + 85 * y) / (x + y));
}

1 个赞

别直接发代码,会被举报的

1 个赞

啊?

1 个赞

拔苗助长帮我看一下

1 个赞

发帖,但要你自己写,我不会发代码了

嗯嗯

1 个赞