Triangle

#include<stdio.h>
void main(){
	int a,b,c;
	printf("Enter the three sides of a triangle as a b & c:\n");
	scanf("%d%d%d",&a,&b,&c);
	if(a+b>c&&b+c>a&&c+a>b){
		printf("Triangle can be formed.\n");
		if(a==b&&b==c){
			printf("Triangle is Equilateral.\n");
		}else if(a!=b&&b!=c&&c!=a){
			printf("Triangle is Scalene.\n");
		}else{
			printf("Triangle is Isoscles.\n");
		}
	}else{
		printf("Triangle cannot be formed.\n");
	}
}

Author: Hifzur

I am a linux, programming and robotics enthusiast. I also love to write blog about life.

Leave a comment