摘要: 1 struct Line{ 2 double a,b,c; 3 }; 4 struct Point{ 5 double x,y; 6 Point(){x=y=0;} 7 8 Point(double a,double b){x=a,y=b;} 9 10 Point operator - (cons 阅读全文
posted @ 2019-10-17 15:52 小布鞋 阅读(158) 评论(0) 推荐(0) 编辑
摘要: 题目链接:https://vjudge.net/problem/POJ-3675 原文链接:https://blog.csdn.net/pokemonn_getto_daze/article/details/52058312 还是借鉴别人的模板的。。。写的太好了。 模板: 1 /********** 阅读全文
posted @ 2019-10-17 15:51 小布鞋 阅读(238) 评论(0) 推荐(0) 编辑