/* * Author: Amit Dutta (amitdutta4255@gmail.com) | Date: 12 Dec 2025 * Repo: https://github.com/notamitgamer/bsc * License: MIT */ /* If the lengths of three sides of a triangle are entered through the keyboard, write a program to check whether the triangle is valid or not. The triangle is valid if the sum of two sides is greater that the largest of the three sides. */ /* Let Us C, Chap - 4, Page - 66, Problem 4.3 */ #include int main() { double side1, side2, side3; printf("Enter the length of side1, side2 and side3 of the triangle : "); scanf("%lf %lf %lf", &side1, &side2, &side3); if (side1 <= 0 || side2 <= 0 || side3 <= 0) { printf("\nTriangle sides must be positive.\n"); return 1; } if ((side1 + side2 > side3) && (side1 + side3 > side2) && (side2 + side3 > side1)) // Triangle Inequality Theorem printf("\nThis triangle is valid."); else printf("\nThis triangle is not valid."); return 0; }