delete pics to save space

This commit is contained in:
2023-08-03 09:22:52 +08:00
commit de60cd6ed4
1334 changed files with 66221 additions and 0 deletions

View File

@ -0,0 +1,23 @@
#include<cstdio>
using namespace std;
double max(double a,double b,double c)
{
if(a>b)
{
if(a>c) return a;
return c;
}
else
{
if(b>c) return b;
return c;
}
}
int main()
{
double m,a,b,c;
scanf("%lf%lf%lf",&a,&b,&c);
m=max(a,b,c)/(max(a+b,b,c)*max(a,b,b+c));
printf("%g\n",m);
return 0;
}