题解 | #求平方根#
求平方根
http://www.nowcoder.com/practice/09fbfb16140b40499951f55113f2166c
class Solution {
public:
/**
*
* @param x int整型
* @return int整型
*/
int sqrt(int x) {
// write code here
if(x<=1){
return x;
}
for(int i=1;i<=x;i++){
int val = i*i;
if(val==x){
return i;
}else if(val>x){
return i-1;
}
}
return -1;
}
}; 