第三周 项目二-三角形类2

来源:互联网 发布:不想上班 知乎 编辑:程序博客网 时间:2024/05/16 07:27

问题及代码

/* * Copyright (c) 2015, 烟台大学计算机学院 * All rights reserved. * 文件名称:test.cpp * 作    者:冷基栋 * 完成日期:2015年 3 月 19 日 * 版 本 号:v1.0 * 问题: 程序功能同项目1,main()函数如下, 请重新定义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;    }    double perimeter()    {        return a+b+c;    }    double area()    {        double p;        p=(a+b+c)/2;        return sqrt(p*(p-a)*(p-b)*(p-c));    }    bool isTriangle()    {        if(a+b>c&&a-b<c)            return true;        else            return false;    }private:    double a;    double b;    double 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定义在private里了

学习心得:

好好学习 天天向上

0 0
原创粉丝点击