To find the area and perimeter of a triangle in a C program, you would first need to input the three sides of the triangle. Then, you can calculate the perimeter by adding the three sides together. Next, you can calculate the semi-perimeter by dividing the perimeter by 2. Finally, you can use Heron's formula to calculate the area of the triangle using the semi-perimeter and the three sides. The C program would involve taking user input, performing the necessary calculations, and outputting the results.
Chat with our AI personalities
Oh honey, to find the area of a triangle in C, you need the base and height, then use the formula 0.5 * base * height. For the perimeter, you add up all three sides. Just make sure your C program takes in the necessary inputs and spits out those calculations. Good luck, darling!
#include
#include
void main()
{
int a,b,c:
float s,A,x=1/2;
clrscr();
printf(" three sides of a triangle\n");
scanf("%d %d %d",&a,&b,&c);
s=(a+b+c)/2;
A=pow((s(s-a)(s-b))(s-c)),x);
printf("AREA OF TRIANGLE:%d\n"'A);
gech();
}
find the area of abc a[2,3] c[6,0]
The height of a triangle alone is not enough information to find the perimeter. You need some angle measures or side lengths.
A2+b2=c2
There is no relationship between the perimeter and area of a rectangle. Knowing the perimeter, it's not possible to find the area. If you pick a number for the perimeter, there are an infinite number of rectangles with different areas that all have that perimeter. Knowing the area, it's not possible to find the perimeter. If you pick a number for the area, there are an infinite number of rectangles with different perimeters that all have that area.
Divide the perimeter by 4 and then square the result to find the area of the square.