摘要: #include <map>#include <hash_map>#include <set>#include <hash_set>#include <iostream>#include <string>#include <algorithm>using namespace std;class Point{private: float x,y;public: Point(float x=0,float y=0) { this->x =x; this->y=y; } void printf() { c 阅读全文
posted @ 2012-05-23 22:58 苍术厚朴 阅读(775) 评论(0) 推荐(0) 编辑