| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 38299 | jiabokai | 最大数max(x,y,z) | C++ | Accepted | 0 MS | 240 KB | 339 | 2024-01-26 14:44:08 |
#include<bits/stdc++.h> using namespace std; double max(double a,double b,double c){ double maxn; if(a>b){ maxn=a; }else maxn=b; if(c>maxn){ return c; }else return maxn; } int main() { double a,b,c; cin>>a>>b>>c; double m=max(a,b,c)/(max(a+b,b,c)*max(a,b,b+c) ); cout<<fixed<<setprecision(3)<<m; return 0; }