第一个C++作品
海伦公式
#include<iostream> #include<cmath> using namespace std; string end1; int main() { double a,b,c,p,s; cout<<"请分别输入三角形的三条边: "; cin>>a>>b>>c; p=(a+b+c) /2; s=sqrt(p*(p-a)*(p-b)*(p-c)); cout<<a<<"、"<<b<<"、"<<c; cout<<"所构成的三角形面积为:"<<s<<end1; return 0; }
|
|
|
|
|
|