加载中...

摘要: 有效的完全平方数 题目 思路: class Solution { public: bool isPerfectSquare(int num) { if (0 == num) return true; if (1 == num) return true; int num_copy = num; for 阅读全文
posted @ 2023-11-10 10:07 一名博客 阅读(18) 评论(0) 推荐(0)