c 自定义sqrt算法。
摘要:
转载自:http://www.examw.com/biancheng/c/194822/#include #include #include #define ACC 0.000000001double newSqrt(double n){ double low, high, mid, tmp; if... 阅读全文
posted @ 2015-07-08 13:56 嘘寒问暖 阅读(471) 评论(0) 推荐(0) 编辑