题解 | #小乐乐计算函数#
小乐乐计算函数
https://www.nowcoder.com/practice/89238e99c36e450786ccf3a9e7481b7b
#include <stdio.h>
int max3(int a, int b, int c) {
int max = a;
if (max < b) {
max = b;
}
if (max < c) {
max = c;
}
return max;
}
int main() {
int a, b, c;
scanf("%d %d %d", &a, &b, &c);
int d = max3(a + b, b, c), e = max3(a, b + c, c), f = max3(a, b + c, c);
float res = 1.0 * d / (e + f);
printf("%0.2f", res);
return 0;
}

查看16道真题和解析