码迷,mamicode.com
首页 > 其他好文 > 详细

A. Make a triangle!

时间:2018-10-15 20:30:00      阅读:124      评论:0      收藏:0      [点我收藏+]

标签:数学   fine   code   增加   txt   efi   include   out   while   

题意

给你三条边a,b,c问使得构成三角形,需要增加的最少长度是多少

思路

数学了啦

代码

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

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout.tie(0);
    //freopen("in.txt","r",stdin); 
    int a,b,c;
    while(cin>>a>>b>>c){
        if(a+b>c&&a+c>b&&b+c>a)
        {
            cout<<0<<endl;
            continue;
        }
        int i=a+b-c,j=a+c-b,k=b+c-a;
            int h=min(i,min(j,k));
            if(h<=0) cout<<-h+1<<endl;
        }
    return 0;
}

A. Make a triangle!

标签:数学   fine   code   增加   txt   efi   include   out   while   

原文地址:https://www.cnblogs.com/mch5201314/p/9792626.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!