function sqrt_(n) {
if (n === 0 || n === 1)
return n;
var i = 1;
var sq = 1;
while (sq <= n) {
i++;
sq = i * i;
}
return i - 1;
}
document.write(sqrt_(9) + "<br />");
document.write(sqrt_(5) + "<br />");
document.write(sqrt_(26) + "<br />");
document.write(sqrt_(16) + "<br />");
/*
run:
3
2
5
4
*/