问题及代码:
/*
Copyright(c)2016,烟台大学计算机与控制工程学院
All rights reserced
文件名称:test.cpp
作 者:蔡汝佳
完成日期:2016年3月29日
版 本 号:v1.0
问题描述:(2)在上面程序的基础上,重新定义Triangle类,其中逻辑特别简单的set和get成员函数,
要处理为内联成员函数,直接在类内定义。
输入描述:
程序输出:
*/
#include<iostream>
#include<cmath>
using namespace std;
class triangle
{
public:
void setA(double x)
{
a=x;
}
void setB(double y)
{
b=y;
}
void setC(double z)
{
c=z;
}
double getA()
{
return a;
}
double getB()
{
return b;
}
double getC()
{
return c;
}
bool isTriangle()
{
if(a+b>=c&&b+c>=a&&a+c>=b)
return true;
else
return false;
}
double perimeter();
double area();
private:
double a,b,c;
};
double triangle::perimeter()
{
return a+b+c;
}
double triangle::area()
{
double x=(a*a+b*b-c*c)/(2*a*b);
return (a*b*sqrt(1-x*x))/2;
}
int main()
{
triangle tri1;
double x,y,z;
cout<<"请输入三角形的三边:";
cin>>x>>y>>z;
tri1.setA(x);
tri1.setB(y);
tri1.setC(z);
if(tri1.isTriangle())
{
cout<<"三条边为:"<<tri1.getA()<<','<<tri1.getB()<<','<<tri1.getC()<<endl;
cout<<"三角形的周长为:"<<tri1.perimeter()<<'\t'<<"面积为:"<<tri1.area()<<endl;
}
else
cout<<"不能构成三角形。"<<endl;
return 0;
}
运行结果:
知识点总结:
学习心得: