三角形类2

来源:互联网 发布:reveal for mac破解版 编辑:程序博客网 时间:2024/06/07 04:46

问题及代码:

/* * Copyright (c) 2015, 烟台大学计算机学院 * All rights reserved. * 文件名称:test.cpp * 作    者:李盈盈 * 完成日期:2015年 03 月 18 日 * 版 本 号:v1.0 * * 问题描述:输入三角形的三条边,输出三角形的周长和面积。 * 输入描述:输入三个整数,分别代表三角形的三条边。 * 程序输出: 输出三角形的周长和面积。 */#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;    }    double perimeter();    double area();    bool isTriangle();private:    double a,b,c;};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;}    bool Triangle::isTriangle()    {        if (a+b>c&&a+c>b&&b+c>a)            return true;        else            return false;    }    double Triangle::perimeter()    {        return a+b+c;    }    double Triangle::area()    {        double p=(a+b+c)/2;        return sqrt(p*(p-a)*(p-b)*(p-c));    }


运行结果:

0 0
原创粉丝点击