1. 程式人生 > >leetcode633+判斷一個數是否為兩個數的平方和

leetcode633+判斷一個數是否為兩個數的平方和

class Solution {
public:
    bool judgeSquareSum(int c) {
        int limit = sqrt(c);
        for(int i=0; i<=limit; i++){
            double test = sqrt(c-i*i);
            if(test- int(test)==0) return true;
        }
        return false;
    }
};