#include
#include
int main()
{
float s,a,b,c,p;
printf("请输入三角形的三边,以空格隔开");
scanf("%f%f%f",&a,&b,&c);
if(a+b>c&&a+c>b&&c+b>a)
{p=(a+b+c)/2;
p=p*(p-a)*(p-b)*(p-c);
s=sqrt(p);
printf("%f",s);}
else printf("你输入的三边,不能构成三角形");
return 0;
}
试试~看看是不是你想要的
1、加上头文件#include
2、你的程序的输入部分scanf("%lfa=3%lfb=4%lfc=45", &a, &b, &ang_c);应该改为
scanf("%lf%lf%lf", &a, &b, &ang_c);,scanf函数中的格式串一般不可以添加除了格式串之外 的,比如a=3 b=4 c=45之类的
3、你用的面积公式是S = 1/2 * a * b * sin(a与b的夹角),sin(ang_c * PI / 180.0)这个部分我不理解 你的夹角怎么求的。如果你是输入三条边的长度,你可以使用海伦公式
S = 【(P* (P - a) * (P - b) * ( P - c))】的平方根 ,其中P为三角形的周长P = a + b + c
sin函数是数学公式,他的头文件你没有写
加上#include
把double sin(double x);这个去掉,这个sin是头文件中的库函数,不必要自己编写
#include
#include
void main()
{
double a,b,c,m,s;
scanf("%lf%lf%lf",&a,&b,&c);
if(a+b
else
{
m=(a+b+c)/2;
s=sqrt((m-a)*(m-b)*(m-c));
printf("三角形的面积%lf",s);
};
}
这个应该可以算,