Chapter - 3: The Decision Control

If the 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 than the largest of the three sides.


G
Sections
5
Exercises
#include<stdio.h>
#include<conio.h>
int main()
{
	int a,b,c;
	
	printf("Enter the sides of the triangle : ");
	scanf("%d%d%d", &a,&b,&c);
	
	if((a<(b+c)) && (b<(a+c)) && c<(b+a))
		printf("\n\nThe triangle is valid.");
	else
		printf("\n\nThe triangle is not valid");
	
	getch();
	return 0;
}

© 2021 Garbage Valuegarbage value logo