Untitled

 avatar
user_0563559
c_cpp
2 years ago
210 B
3
Indexable
#include <iostream>
using namespace std;
int main() {
    double a, b, c, p, s;

    cin >> a >> b >> c;
    p = (a + b + c) / 2;
    s = sqrt(p * (p - a) * (p - b) * (p - c));
    cout << s << endl;
}
Editor is loading...
Leave a Comment