标签: javascript
如果当前数字为完美平方,则代码应返回下一个平方
function findnextsquare(sq) { return Math.sqrt(sq)%1?-1: Math.pow(Math.sqrt(sq)+1,2); }