您的位置:首页 > 其它

第三周 项目三-程序的多文件组织

2015-03-19 12:51 441 查看
问题

/*
 * Copyright (c) 2015, 烟台大学计算机学院
 * All rights reserved.
 * 文件名称:test.cpp
 * 作    者:冷基栋
 * 完成日期:2015年 3 月 19 日
 * 版 本 号:v1.0
 * 问题: 程序功能同项目1,main()函数如下,
 请重新定义Triangle类,其中逻辑特别简单的set和get成员函数,要处理为内置成员函数,直接在类内定义。
*/

代码

main.cpp

#include <iostream>
#include "triangle.h"
using namespace std;

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;
}

triangle.h

#ifndef TRIANGLE_H_INCLUDED
#define TRIANGLE_H_INCLUDED
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;
    double b;
    double c;
};

#endif // TRIANGLE_H_INCLUDED

triangle.cpp

#include "triangle.h"
#include <cmath>
double Triangle::perimeter()
{
    return a+b+c;
}
double Triangle::area()
{
    double p;
    p=(a+b+c)/2;
    return sqrt(p*(p-a)*(p-b)*(p-c));
}
bool Triangle::isTriangle()
{
    if(a+b>c&&a-b<c)
        return true;
    else
        return false;
}

运行结果:



知识点总结:

程序的多文件组织,注意头文件书写和公共函数的调用。

学习心得:

好好学习 天天向上
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: