Question: Three line segments, a , b , and c , can form a triangle if and only if length(a) + length(b) > length(c) AND length(a)
Three line segments, a, b, and c, can form a triangle if and only if
length(a) + length(b) > length(c) AND length(a) + length(c) > length(b) AND length(b) + length(c) > length(a)
Test a program in Python by entering various triangles and non-triangles. Now enter the following three sides: a=18, b=27, c=49.999999999999999. Does it correctly categorize this as a triangle? If not, explain why.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
