标签:code ret java -- nat http output 个数 代码
633. Sum of Square Numbers (Easy)
Input: 5
Output: True
Explanation: 1 * 1 + 2 * 2 = 5
??判断一个数是否为两个数的平方和。
public boolean judgeSquareSum(int c){
int i=0;
int j=(int)Math.sqrt(c);
while(i<=j){
int sum=i*i+j*j;
if(sum==c)
return true;
else if(sum<c){
i++;
}else{
j++;
}
}
return false;
}
标签:code ret java -- nat http output 个数 代码
原文地址:https://www.cnblogs.com/yjxyy/p/11104377.html