
精度问题
文章平均质量分 80
Kylehz
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
高精度模板
#include #include #include #include using namespace std; //compare比较函数:相等返回0,大于返回1,小于返回-1 int compare(string str1,string str2) { if(str1.length()>str2.length()) return 1; else if(str1.length(转载 2014-04-26 13:21:05 · 460 阅读 · 0 评论 -
精度问题
由于所给数据无非4种情况 conic section equation circle x2+y2=a2 ellipse x2/a2+y2/b2=1 parabola y2=4ax hyperbola x2/a2-y2/b2=1 只要考虑a,c即可 co原创 2014-04-10 12:53:02 · 425 阅读 · 0 评论