摘要: Implement int sqrt(int x). Compute and return the square root of x. 自己的代码: 1 int mySqrt(int x) { 2 if(x == 0 || x == 1) 3 return x; 4 int begin = 0; 5 阅读全文
posted @ 2016-02-21 11:11 dylqt 阅读(240) 评论(0) 推荐(0) 编辑