xt4-12.cpp
上传用户:liubin
上传日期:2022-06-13
资源大小:85k
文件大小:0k
源码类别:

书籍源码

开发平台:

Visual C++

  1. #include <iostream>
  2. #include <cmath>
  3. using namespace std;
  4. #define S(a,b,c)  (a+b+c)/2
  5. #define AREA(a,b,c) sqrt(S(a,b,c)*(S(a,b,c)-a)*(S(a,b,c)-b)*(S(a,b,c)-c))
  6. int main()
  7.  {float a,b,c;
  8.   cout<<"input a,b,c:";
  9.   cin>>a>>b>>c;
  10.   if (a+b>c && a+c>b && b+c>a)
  11.     cout<<"area="<<AREA(a,b,c)<<endl;
  12.   else
  13.     cout<<"It is not a triangle!"<<endl;
  14.   return 0;
  15.  } 
  16.  
  17.