Computer Science, asked by ayushpandey9431, 5 months ago

write a program to accept two side of triangle and check weather the triangle is possible or not​

Answers

Answered by mayurikajuthu
0

A triangle is valid if sum of its two sides is greater than the third side. If three sides are a, b and c, then three conditions should be met.

1.a + b > c  

2.a + c > b  

3.b + c > a  

Similar questions