题解
2025-01-18 22:03:36
发布于:江苏
2阅读
0回复
0点赞
#include<iostream>
#include<cmath>
#include<cstdio>
using namespace std;
int main(){
double a,b,c;
cin>>a>>b>>c;
double p=(a+b+c)/2;
printf("%.2f",sqrt(p*(p-a)*(p-b)*(p-c)));
return 0;
}
这里空空如也
有帮助,赞一个