已知:
输入?a,b,c,求?m?。
把求三个数的最大数?max?(max(x,y,z)?分别定义成函数和过程来做。
输入只有一个行三个整数,分别为 a,b,c。
输出一行一个小数,为答案,保留三位小数。
输入 #1
1 2 3
输出 #1
0.200
对于全部的测试点,保证 ∣a∣,∣b∣,∣c∣≤50。 换句话说,a,b,c?都在 -50 到 50 之间。
---------------------------------------------------------------------------------------------------------------------------------
这道题我们可以用函数,以为max它不支持3个的最大值,所以,我们要建立一个叫maxx的函数用来找最大值:
double maxx(double a, double b, double c){
return max(a, max(b, c));
}
所以,在我们主要的程序中,可以用一个叫maxx的函数:
对了,注意保留三位小数
#include <bits/stdc++.h>
using namespace std;
double a, b, c;
double maxx(double a, double b, double c){
return max(a, max(b, c));
}
int main(){
scanf("%lf%lf%lf", &a, &b, &c);
return printf("%.3lf", maxx(a, b, c) / maxx(a + b, b, c) / maxx(a, b, b + c)), 0;
}
最后,压个行:
?
#include <bits/stdc++.h>
using namespace std;
double a, b, c;
double maxx(double a, double b, double c){return max(a, max(b, c));}
int main(){scanf("%lf%lf%lf", &a, &b, &c); return printf("%.3lf", maxx(a, b, c) / maxx(a + b, b, c) / maxx(a, b, b + c)), 0;}