2022年11月15日
摘要: const double eps = 1e-8; struct point{ double x, y; point operator + (const point &p) const{return point{x + p.x, y + p.y};} point operator - (const p 阅读全文
posted @ 2022-11-15 15:20 Hamine 阅读(157) 评论(0) 推荐(0) 编辑