摘要: #include<stdio.h>#include<iostream>#include<math.h>using namespace std; const double EPS = 1e-6; int sign(double d){ return d < -EPS? -1 :(d > EPS? 1 阅读全文
posted @ 2018-03-23 20:20 朽木の半夏 阅读(124) 评论(0) 推荐(0) 编辑