以下是一個計算三角形面積的C語言代碼示例:
#include <stdio.h>
int main() {
float base, height, area;
// 輸入三角形的底邊和高
printf("Enter the base of the triangle: ");
scanf("%f", &base);
printf("Enter the height of the triangle: ");
scanf("%f", &height);
// 計算三角形的面積
area = 0.5 * base * height;
// 輸出結果
printf("The area of the triangle is: %.2f\n", area);
return 0;
}
運行該程序后,用戶可以輸入三角形的底邊和高,程序將計算并輸出三角形的面積。