用字符double写出用C语言计算三角形面积的代码
时间: 2024-05-14 21:19:43 浏览: 83
以下是使用C语言计算三角形面积的代码:
```
#include <stdio.h>
int main() {
double base, height, area;
printf("Enter the base and height of the triangle: ");
scanf("%lf %lf", &base, &height);
area = 0.5 * base * height;
printf("The area of the triangle is: %lf\n", area);
return 0;
}
```
在上述代码中,我们定义了三个double类型的变量base、height和area,分别表示三角形的底边、高和面积。然后,我们使用printf函数提示用户输入三角形的底边和高,使用scanf函数将用户输入的值存储到变量base和height中。最后,我们使用公式0.5 * base * height计算三角形的面积,并将结果存储到变量area中。最后,我们使用printf函数输出三角形的面积。
阅读全文