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

第六周項目三:平面坐標點類

編輯:C++入門知識

[cpp]
*
* 程序的版權和版本聲明部分
* Copyright (c)2013, 煙台大學計算機學院學生
* 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); 
  CPoint SymmetricAxis(char style)const; 
  double Distance(CPoint p) const;   // 兩點之間的距離(一點是當前點,另一點為參數p)  
  double Distance0() const;          // 到原點的距離  
  void input();  //以x,y 形式輸入坐標點  
  void output(); //以(x,y) 形式輸出坐標點  
}; 
CPoint::CPoint(double xx,double yy) 

    x=xx; 
    y=yy; 

double CPoint::Distance(CPoint p) const 

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

double CPoint::Distance0() const 

    return sqrt(x*x+y*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() 

    cout<<"請以(x,y)的形式輸入:"<<endl; 
    char d; 
    cin>>x>>d>>y; 
    while(d!=',') 
        cout<<"輸入形式錯誤,請重新輸入!"<<endl; 

void CPoint::output() 

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

int main() 

    double distance; 
    CPoint p1,p2,p; 
    cout<<"請輸入第一個點的坐標,"; 
    p1.input(); 
    cout<<"請輸入第二個點的坐標,"; 
    p2.input(); 
    distance=p1.Distance(p2); 
    cout<<"兩點之間的距離是:"<<distance<<endl; 
    distance=p1.Distance0(); 
    cout<<"到原點之間的距離是:"<<distance<<endl; 
    p=p1.SymmetricAxis('x'); 
    cout<<"關於x軸的對稱點坐標:"<<endl; 
    p.output(); 
    p=p1.SymmetricAxis('y'); 
    cout<<"關於y軸的對稱點坐標:"<<endl; 
    p.output(); 
    p=p1.SymmetricAxis('o'); 
    cout<<"關於o點的對稱點坐標:"<<endl; 
    p.output(); 
    return 0; 

/*
* 程序的版權和版本聲明部分
* Copyright (c)2013, 煙台大學計算機學院學生
* 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);
  CPoint SymmetricAxis(char style)const;
  double Distance(CPoint p) const;   // 兩點之間的距離(一點是當前點,另一點為參數p)
  double Distance0() const;          // 到原點的距離
  void input();  //以x,y 形式輸入坐標點
  void output(); //以(x,y) 形式輸出坐標點
};
CPoint::CPoint(double xx,double yy)
{
 x=xx;
 y=yy;
}
double CPoint::Distance(CPoint p) const
{
 return sqrt((x-p.x)*(x-p.x)+(y-p.x)*(y-p.x));
}
double CPoint::Distance0() const
{
 return sqrt(x*x+y*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()
{
 cout<<"請以(x,y)的形式輸入:"<<endl;
 char d;
 cin>>x>>d>>y;
 while(d!=',')
  cout<<"輸入形式錯誤,請重新輸入!"<<endl;
}
void CPoint::output()
{
 cout<<"("<<x<<","<<y<<")"<<endl;
}
int main()
{
    double distance;
    CPoint p1,p2,p;
    cout<<"請輸入第一個點的坐標,";
    p1.input();
    cout<<"請輸入第二個點的坐標,";
    p2.input();
    distance=p1.Distance(p2);
    cout<<"兩點之間的距離是:"<<distance<<endl;
    distance=p1.Distance0();
    cout<<"到原點之間的距離是:"<<distance<<endl;
 p=p1.SymmetricAxis('x');
 cout<<"關於x軸的對稱點坐標:"<<endl;
 p.output();
 p=p1.SymmetricAxis('y');
 cout<<"關於y軸的對稱點坐標:"<<endl;
 p.output();
 p=p1.SymmetricAxis('o');
 cout<<"關於o點的對稱點坐標:"<<endl;
 p.output();
    return 0;
}

輸出結果:

\ 

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