Heim >Datenbank >MySQL-Tutorial >第三周项目二:三角形类2

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

WBOY
WBOYOriginal
2016-06-07 15:14:45943Durchsuche

*copyright (c) 2014, 烟台大学计算机学院. *All rights reserved. *文件名称:test.cpp *作者:陆云杰 *完成日期:2015年3月19日 *版本号:v1.0 * * *问题描述:三角形类2 *程序输入: 三角形的三边长 *程序输出: 略 */ #includeiostream#includeCmath#inc



*copyright (c) 2014, 烟台大学计算机学院.  
  
*All rights reserved.  
  
*文件名称:test.cpp   

*作者:陆云杰  
  
*完成日期:2015年3月19日   
  
*版本号:v1.0  
 
*   
  
*  
  
*问题描述:三角形类2
  
*程序输入: 三角形的三边长

*程序输出: 略
  
*/     

#include<iostream>
#include<cmath>
#include<iomanip>
using namespace std;
class Triangle
{
public:
	void setA(double x)
	{
	    a=x;
	}
	void setB(double y)
	{
	    b=y;
	}
	void setC(double z)
	{
	    c=z;
	}
	bool isTriangle()
	{
	    if(a+b>c&&a+c>b&&b+c>a)
            return(1);
            else return (0);
	}
double getA()
	{
	    return a;
	}
double getB()
	{
	    return b;
	}
double getC()
	{
	    return c;
	}
	double perimeter(void)
	{
	     return a+b+c;
	}
	double area(void)
	{
	double p=(a+b+c)/2;
    cout>x>>y>>z;
    tri1.setA(x);
    tri1.setB(y);
    tri1.setC(z);	//为三边置初值
    if(tri1.isTriangle())
    {
        cout<br>
<img  src="/inc/test.jsp?url=http%3A%2F%2Fimg.blog.csdn.net%2F20150319222749194%3Fwatermark%2F2%2Ftext%2FaHR0cDovL2Jsb2cuY3Nkbi5uZXQvbHVfeXVuamll%2Ffont%2F5a6L5L2T%2Ffontsize%2F400%2Ffill%2FI0JBQkFCMA%3D%3D%2Fdissolve%2F70%2Fgravity%2FCenter&refer=http%3A%2F%2Fblog.csdn.net%2Flu_yunjie%2Farticle%2Fdetails%2F44466539" alt="第三周项目二:三角形类2" ><br>



</iomanip></cmath></iostream>
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn