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

平面坐標點類

編輯:C++入門知識

[cpp]
/*
* 程序的版權和版本聲明部分
* Copyright (c)2012, 煙台大學計算機學院學生
* All rightsreserved.
* 文件名稱: object.cpp
* 作者:劉清遠
* 完成日期: 2013 年4月9日
* 版本號: v1.0
* 輸入描述:無
* 問題描述:
* 程序輸出:
*/ 
 
#include <iostream>  
#include <Cmath>  
using namespace std; 
 
class CPoint 

private: 
    double x;  // 橫坐標  
    double y;  // 縱坐標  
public: 
    CPoint(double xx=0,double yy=0); 
    double Distance(CPoint p) const;   // 兩點之間的距離(一點是當前點,另一點為參數p)  
    double Distance0() const;          // 到原點的距離  
    CPoint SymmetricAxis(char style)const;//style取'x','y'和'o'分別表示按x軸, y軸, 原點對稱  
    void input();  //以x,y 形式輸入坐標點  
    void output(); //以(x,y) 形式輸出坐標點  
}; 
 
CPoint::CPoint(double xx,double yy) 

  x=xx; 
  y=yy; 

 
// 求兩點之間的距離  
double CPoint::Distance(CPoint p) const 

  double d; 
  d=sqrt((p.x-x)*(p.x-x)+(p.y-y)*(p.y-y)); 
  return d; 

 
// 求點到原點的距離  
double CPoint::Distance0() const 

  double d; 
  d=sqrt(x*x+y*y); 
  return d; 

 
// 求對稱點, style取'x','y'和'o'分別表示按x軸, y軸, 原點對稱  
CPoint CPoint::SymmetricAxis(char style) const 

  CPoint p(this->x,this->y); 
  switch(style) 
  { 
  case 'x': 
    p.y=-y; break; 
  case 'y': 
    p.x=-x; break; 
  case 'o': 
    p.x=-x;p.y=-y; 
  } 
  return p; 

 
 
// 輸入坐標點  
void CPoint::input() 

  char c; 
  cout<<"請輸入坐標點(格式x,y ):"; 
  while(1) 
  { 
    cin>>x>>c>>y; 
    if (c==',') break; 
    else 
        cout<<"輸入的數據格式不符合規范,請重新輸入:"; 
  } 

 
// 輸出坐標點  
void CPoint::output() 

  cout<<"("<<x<<", "<<y<<")"<<endl; 

 
int main( ) 

  double distance; 
  CPoint p1,p2,p; 
  cout<<"第1個點p1,"; 
  p1.input(); 
  cout<<"第2個點p2,"; 
  p2.input(); 
  distance=p1.Distance(p2); 
  cout<<"兩點的距離為:"<<distance<<endl; 
  distance=p1.Distance0(); 
  cout<<"p1到原點的距離為:"<<distance<<endl; 
  p=p1.SymmetricAxis('x'); 
  cout<<"p1關於x軸的對稱點為:"; 
  p.output(); 
  p=p1.SymmetricAxis('y'); 
  cout<<"p1關於y軸的對稱點為:"; 
  p.output(); 
  p=p1.SymmetricAxis('o'); 
  cout<<"p1關於原點的對稱點為:"; 
  p.output(); 
  return 0; 

/*
* 程序的版權和版本聲明部分
* Copyright (c)2012, 煙台大學計算機學院學生
* All rightsreserved.
* 文件名稱: object.cpp
* 作者:劉清遠
* 完成日期: 2013 年4月9日
* 版本號: v1.0
* 輸入描述:無
* 問題描述:
* 程序輸出:
*/

#include <iostream>
#include <Cmath>
using namespace std;

class CPoint
{
private:
 double x;  // 橫坐標
 double y;  // 縱坐標
public:
 CPoint(double xx=0,double yy=0);
 double Distance(CPoint p) const;   // 兩點之間的距離(一點是當前點,另一點為參數p)
 double Distance0() const;          // 到原點的距離
 CPoint SymmetricAxis(char style)const;//style取'x','y'和'o'分別表示按x軸, y軸, 原點對稱
 void input();  //以x,y 形式輸入坐標點
 void output(); //以(x,y) 形式輸出坐標點
};

CPoint::CPoint(double xx,double yy)
{
  x=xx;
  y=yy;
}

// 求兩點之間的距離
double CPoint::Distance(CPoint p) const
{
  double d;
  d=sqrt((p.x-x)*(p.x-x)+(p.y-y)*(p.y-y));
  return d;
}

// 求點到原點的距離
double CPoint::Distance0() const
{
  double d;
  d=sqrt(x*x+y*y);
  return d;
}

// 求對稱點, style取'x','y'和'o'分別表示按x軸, y軸, 原點對稱
CPoint CPoint::SymmetricAxis(char style) const
{
  CPoint p(this->x,this->y);
  switch(style)
  {
  case 'x':
    p.y=-y; break;
  case 'y':
    p.x=-x; break;
  case 'o':
    p.x=-x;p.y=-y;
  }
  return p;
}


// 輸入坐標點
void CPoint::input()
{
  char c;
  cout<<"請輸入坐標點(格式x,y ):";
  while(1)
  {
    cin>>x>>c>>y;
    if (c==',') break;
 else
  cout<<"輸入的數據格式不符合規范,請重新輸入:";
  }
}

// 輸出坐標點
void CPoint::output()
{
  cout<<"("<<x<<", "<<y<<")"<<endl;
}

int main( )
{
  double distance;
  CPoint p1,p2,p;
  cout<<"第1個點p1,";
  p1.input();
  cout<<"第2個點p2,";
  p2.input();
  distance=p1.Distance(p2);
  cout<<"兩點的距離為:"<<distance<<endl;
  distance=p1.Distance0();
  cout<<"p1到原點的距離為:"<<distance<<endl;
  p=p1.SymmetricAxis('x');
  cout<<"p1關於x軸的對稱點為:";
  p.output();
  p=p1.SymmetricAxis('y');
  cout<<"p1關於y軸的對稱點為:";
  p.output();
  p=p1.SymmetricAxis('o');
  cout<<"p1關於原點的對稱點為:";
  p.output();
  return 0;
}

\ 

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