Untitled
user_0563559
c_cpp
11/30/2023 12:23 PM
280 B
13
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