Viết chương trình C để tính diện tích hình tam giác

Các bước thực hiện:

1- Nhập vào độ dài của đáy và chiều cao

2- Tính diện tích = (độ dài của đáy * chiều cao) / 2

3- In ra kết quả

Code tham khảo:


#include <stdio.h>
int main()
{
float base, height, area;

/* Input base and height of triangle */
printf("Enter base of the triangle: ");
scanf("%f", &base);
printf("Enter height of the triangle: ");
scanf("%f", &height);

/* Calculate area of triangle */
area = (base * height) / 2;

/* Print the resultant area */
printf("Area of the triangle = %.2f sq. units", area);

return 0;
}