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

第6周-項目3-平面坐標點類

編輯: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); 
  double Distance(CPoint p) const;   // 兩點之間的距離(一點是當前點,另一點為參數p)  
  double Distance() 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; 

void CPoint::input() 

    char c; 
    cin>>x>>c>>y; 
    if(c!=',') 
    { 
        cout<<"輸入錯誤,請重新輸入"; 
        exit(0); 
    } 
     

void CPoint::output() //以(x,y) 形式輸出坐標點  

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

double CPoint::Distance(CPoint p) const         // 兩點之間的距離(一點是當前點,另一點為參數p)  

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

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

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

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

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

int main() 

    CPoint p,p1,p2; 
    cout<<"請輸入第一個點;"; 
    p1.input(); 
    cout<<"請輸入第二個點;"; 
    p2.input(); 
    cout<<"兩地的距離為:"<<p1.Distance(p2);   //復制構造函數  
    cout<<"到原點的距離"<<p1.Distance()<<endl; 
    p=p1.SymmetricAxis('x'); 
    p.output(); 
    p=p1.SymmetricAxis('y'); 
    p.output(); 
    p=p1.SymmetricAxis('o'); 
    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);
  double Distance(CPoint p) const;   // 兩點之間的距離(一點是當前點,另一點為參數p)
  double Distance() 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;
}
void CPoint::input()
{
 char c;
 cin>>x>>c>>y;
 if(c!=',')
 {
  cout<<"輸入錯誤,請重新輸入";
  exit(0);
 }
 
}
void CPoint::output() //以(x,y) 形式輸出坐標點
{
 cout<<"("<<x<<","<<y<<")"<<endl;
}
double CPoint::Distance(CPoint p) const         // 兩點之間的距離(一點是當前點,另一點為參數p)
{
 double s;
 s=sqrt((p.x-x)*(p.x-x)+(p.y-y)*(p.y-y));
 return s;
}
double CPoint::Distance() const        // 到原點的距離
{
 double s;
 s=sqrt(x*x+y*y);
 return s;

}
CPoint CPoint:: SymmetricAxis(char style)const//style取'x','y'和'o'分別表示按x軸, y軸, 原點對稱
{
 CPoint p(x,y);
 switch(style)
 {
 case'x':
  p.y=-y;
  break;
 case'y':
  p.x=-x;
  break;
 case'o':
  p.x=-x;
  p.y=-y;
  break;
 }
 return p;
}
int main()
{
 CPoint p,p1,p2;
 cout<<"請輸入第一個點;";
 p1.input();
 cout<<"請輸入第二個點;";
 p2.input();
 cout<<"兩地的距離為:"<<p1.Distance(p2);   //復制構造函數
 cout<<"到原點的距離"<<p1.Distance()<<endl;
 p=p1.SymmetricAxis('x');
 p.output();
 p=p1.SymmetricAxis('y');
 p.output();
 p=p1.SymmetricAxis('o');
 p.output();
 return 0;
}

結果:

 \

感受:復制構造函數需要看看想想啊

 

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