13 条题解

  • -2
    @ 2023-12-24 13:38:47

    #include<bits/stdc++.h> using namespace std; int main() { double a,b,c,d; cin>>a>>b>>c; d=(a+b+c)/2; cout<<fixed<<setprecision(2)<<sqrt(d*(d-a)(d-b)(d-c))<<endl; return 0; }

    信息

    ID
    11
    时间
    1000ms
    内存
    256MiB
    难度
    3
    标签
    递交数
    260
    已通过
    134
    上传者