Computer Science, asked by VanshDobhal, 10 months ago

if else statement


s= (a+b<c ll a+c<= b 11 b t+c< =a ) ?

Triangle is
possible": triangle is not possible

Answers

Answered by DrNykterstein
3

if ( (a + b)< c || (a + c) <= b || (t+c) <= a) {

cout << " Triangle is possible ";

} else {

cout << " Triangle is not possible ";

}

Answered by shettybhushan1
0

Answer:

triangle is possible

Explanation:

because there are three angles present

I hope it will help you

Similar questions