#include "stdio.h"
#include "math.h"
int main()
{
int a,b,c;
double s,t;
scanf("%d %d %d",&a,&b,&c);
s=(a+b+c)/2.0;
t=sqrt(s*(s-a)*(s-b)*(s-c));
printf("%.2lf\n",t);
}
欢迎分享,转载请注明来源:内存溢出
#include "stdio.h"
#include "math.h"
int main()
{
int a,b,c;
double s,t;
scanf("%d %d %d",&a,&b,&c);
s=(a+b+c)/2.0;
t=sqrt(s*(s-a)*(s-b)*(s-c));
printf("%.2lf\n",t);
}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)