您的位置:首页 > 其它

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

2015-03-19 22:28 295 查看

*copyright (c) 2014, 烟台大学计算机学院.

*All rights reserved.

*文件名称:test.cpp

*作者:陆云杰

*完成日期:2015年3月19日

*版本号:v1.0

*

*

*问题描述:程序的多文件组织

*程序输入: 三角形的三边长

*程序输出: 三角形的面积和周长

*/

#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类中的各个成员函数


#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;
}
bool isTriangle();//判断是否构成三角形
double perimeter(void);//计算三角形的周长
double area(void);//计算并返回三角形的面积
private:
double a,b,c; //三边为私有成员数据
};

#endif // TRIANGLE_H_INCLUDED


#include<iostream>
#include<Cmath>
#include"triangle.h"
using namespace std;
bool Triangle::isTriangle()
{
return (a+b>c&&a+c>b&&b+c>a);
}

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


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