摘要: 程序的结构模块有:1.Point类。 1 #ifndef _POINT_H_ 2 #define _POINT_H_ 3 4 5 class Point{ 6 public: 7 double x; 8 double y; 9 public: 10 Point();... 阅读全文
posted @ 2015-12-09 22:40 Jason_H 阅读(356) 评论(0) 推荐(0)