题解 | #三角形的边#

三角形的边

https://www.nowcoder.com/practice/05dbd1cd43b24dbbae567b3e816d4e97

#include <bits/stdc++.h>
using namespace std;

int main() {
    int a, b,c;
    while (cin >> a >> b>>c) { // 注意 while 处理多个 case
    if(a+b+c == 0)return 0;
        int max = a;
        if(b>max)max=b;
        if(c>max)max=c;
        int sum=a+b+c;
        cout<<sum-2*max<<endl;
    }
}
// 64 位输出请用 printf("%lld")

全部评论

相关推荐

等闲_:小红书基本不区分日常和暑期,你是应届实习时间够了就有转正机会,只要部门有hc
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务