Q4_e
kuber
plain_text
4 years ago
328 B
7
Indexable
select case
when A + B > C and B + C > A and C + A > B then
case
when A = B and B = C then 'Equilateral'
when A = B or B = C or C = A then 'Isosceles'
else 'Scalene'
end
else 'Not A Triangle' end
from trianglesEditor is loading...