程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> 二周 項目5 點結構體與枚舉

二周 項目5 點結構體與枚舉

編輯:C++入門知識

/*
煙台大學計算機學院學生
*All rights reserved.
*文件名稱:
*作者:zhaojiaxiang
*完成日期:2013年3月8日
*版本號:v1.0
*我的程序:
*/
#include
#include
using namespace std;
enum SymmetricStyle {axisx,axisy,point};//分別表示按x軸, y軸, 原點對稱
struct Point
{
    double x;  // 橫坐標
    double y;  // 縱坐標
};
double distance(Point p1, Point p2);   // 兩點之間的距離
double distance0(Point p1);
Point symmetricAxis(Point p,SymmetricStyle style);   //返回對稱點
int main( )
{
    Point p1= {1,5},p2= {4,1},p;
    cout<<"兩點的距離為:"<


感悟:在做題之前先看了看同學的原型 並借鑒了一周的項目一

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