2008
03-19

怎么遍一个程序用三角形的三边求面积 啊


 


求救》有 1 条评论

  1. daxia4540827 说:

    │#include<stdio.h>
    │#include<math.h>
    │main()
    │{
    │float a,b,c;
    │float l=0,s=0;
    │printf(“please input a,b,c:”);
    │scanf(“%f,%f,%f”,&a,&b,&c);
    │if
    │(((a+b)>c)&&((b+c)>a)&&((a+c)>b))
    │{
    │l=1.0/2*(a+b+c);
    │s=sqrt(l*((l-a)*(l-b)*(l-c)));
    │printf(“s=%7.2f\n”,s);
    │}
    │else
    │printf(“error!”);
    │}

留下一个回复