Computer Science, asked by 128799, 11 months ago

write an algorithm to input three sides of triangle and print if it is scalene, isosceles or equilateral

Answers

Answered by arifhussain47
18

Answer:

Heron's Formula for finding area of triangle:

First find the semi parameter of atriangle using formula, s= (a+b+c)/2 where a, b, c are three sides of triangleand s will the semi parameter. Then use the below formula to get the area of triangle.

Answered by bishal7415
9

Answer:

/**

* C program to check whether a triangle is Equilateral, Isosceles or Scalene

*/

#include <stdio.h>

int main()

{

int side1, side2, side3;

/* Input sides of a triangle */

printf("Enter three sides of triangle: ");

scanf("%d%d%d", &side1, &side2, &side3);

if(side1==side2 && side2==side3)

{

/* If all sides are equal */

printf("Equilateral triangle.");

}

else if(side1==side2 || side1==side3 || side2==side3)

{

/* If any two sides are equal */

printf("Isosceles triangle.");

}

else

{

/* If none sides are equal */

printf("Scalene triangle.");

}

return 0;

}

Hope this helps you

From BKS OBEROY

Similar questions