Leetcode 633. Sum of Square Numbers | | Leetcode 633. Sum of Square Numbers 文章作者:Tyan博客:noahsnail.com | CSDN | 简书 1. Description 2. Solution1234567891011121314class Solution {public: bool judgeSquareSum(int c) { int root = int(sqrt(c)) + 1; for(int i = 0; i < root; i++) { int difference = c - i * i; int j = int(sqrt(difference)); if(i * i + j * j == c) { return true; } } return false; }}; Reference https://leetcode.com/problems/sum-of-square-numbers/description/ 如果有收获,可以请我喝杯咖啡! 赏 微信打赏 支付宝打赏