c语言三角形面积代码怎么写

avatar
作者
筋斗云
阅读量:0

以下是一个计算三角形面积的C语言代码示例:

#include   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: %.2fn", area);      return 0; } 

运行该程序后,用户可以输入三角形的底边和高,程序将计算并输出三角形的面积。

    广告一刻

    为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!