TOJ1201
Posted HANCAO
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了TOJ1201相关的知识,希望对你有一定的参考价值。
#include<iostream> #include<iomanip> #include<cmath> using namespace std; int main() { double a, b, c; double s; while (scanf("%lf %lf %lf",&a,&b,&c)!=EOF) { double p = (a + b + c) / 2; s = sqrt(p*(p - a)*(p - b)*(p - c)); cout << setiosflags(ios::fixed) << setprecision(3) << s << endl; } return 0; }
海伦公式:s=sqrt(p(p-a)(p-b)(p-c))
以上是关于TOJ1201的主要内容,如果未能解决你的问题,请参考以下文章