#include <bits/stdc++.h> using namespace std; int main() { int x, y; cin >> x >> y; cout << fixed << setprecision(4) << double(x*87+y*85)/(x+y);//浮点型和整型相除,结果是浮点型 return 0; }
一本通2071;平均分
于 2022-10-28 22:30:55 首次发布
#include <bits/stdc++.h> using namespace std; int main() { int x, y; cin >> x >> y; cout << fixed << setprecision(4) << double(x*87+y*85)/(x+y);//浮点型和整型相除,结果是浮点型 return 0; }