程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> 第四周任務2——三角形類

第四周任務2——三角形類

編輯:C++入門知識

[cpp]   /*   02.* 程序的版權和版本聲明部分   03.* Copyright (c)2012, 煙台大學計算機學院學生   04.* All rightsreserved.   05.* 文件名稱: object.cpp   06.* 作者:董萬鵬   07.* 完成日期: 2013年3  月22  日   08.* 版本號: v1.0   09.* 輸入描述:無   10.* 問題描述:設計求三角形周長和面積的類。   11.* 程序輸出:三角形的周長和面積   12.*/     #include<iostream>   #include<Cmath>   using namespace std;   class Triangle   {   public:       inline void setA(double x);       inline void setB(double y);       inline void setC(double z);//置三邊的值,注意要能成三角形       inline double getA();       inline double getB();       inline double getC();       bool isTriangle();       double perimeter(void);//計算三角形的周長       double area(void);//計算並返回三角形的面積   private:       double a,b,c; //三邊為私有成員數據   };   inline void Triangle::setA(double x)   {       a=x;   }   inline void Triangle::setB(double y)   {       b=y;   }   inline void Triangle::setC(double z)   {       c=z;   }      bool Triangle::isTriangle()   {      if(((a+b)>c) && ((a+c)>b) && ((b+c)>a) &&((a-b)<c) && ((a-c)<b) && ((b-c)<a))          return true;      else          return false;   }         inline double Triangle::getA()   {       return a;   }   inline double Triangle::getB()   {       return b;   }   inline double Triangle::getC()   {      return c;   }      double Triangle::perimeter()   {       return (a+b+c);   }   double Triangle::area()   {       double area,p;       p=(a+b+c)/2;       area=sqrt(p*(p-a)*(p-b)*(p-c));       return area;   }      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;       system("pause");       return 0;   }  
\\

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved