Untitled
unknown
plain_text
2 years ago
201 B
6
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