题解 | #小乐乐计算函数#

小乐乐计算函数

http://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 x = max3(a+b, b, c);
    int y = max3(a, b+c, c);
    int z = max3(a, b, b+c);
    float m = (float) x / (y + z);
    printf("%.2f", m);
}
全部评论

相关推荐

11-03 14:38
重庆大学 Java
AAA求offer教程:我手都抬起来了又揣裤兜了
点赞 评论 收藏
分享
评论
2
收藏
分享
牛客网
牛客企业服务