QWERTY123
2024-08-10 19:23:42
发布于:广东
#include<bits/stdc++.h>
using namespace std;
int main(){
double a,b,c;
cin >> a >> b >> c;
double q = max(max(a + b,b),c);
double s = max(max(a,b),b + c);
s *= q;
double y = max(max(a,b),c);
printf("%.2lf",y / s);
return 0;
}
这里空空如也
有帮助,赞一个