#include <stdio.h>
int main()
int math() {
float a,b,c,s,area; a=17.8 ; b=19.5 ; c=25.7; s=(a+b+c)/2; area=sqrt s*(s-a)*(s-b)*(s-c); printf("三角形面积为:%f\n",area);
return 0;
}
#include <math.h>
sqrt是什么意思?
三角形面积是s=(a+b+c)/2???
三角形面积需要那么多数据吗,算个三角形的面积还需要用到函数吗
sqrt属于数学函数,需要#include <math.h>
少了个math头文件
算三角形还有那么巧妙的公式的吗