I'm not good at geometry, but I'm trying to practice programming, and I'm asked to write a program that accepts three integers, and returns true or false depending if a triangle can be built using those values. I'm not asking for code or anything. I just want to know if there is any formula that could help me.
2026-03-30 07:26:42.1774855602
Given three integers is it possible to determine if a triangle can be built with them?
481 Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
3
Let $$a,b,c$$ the given numbers, then it must be $$a+b>c,a+c>b,b+c>a$$