2023每日刷题(五十四) Leetcode—231.2的幂 实现代码 class Solution { public: bool isPowerOfTwo(int n) { if(n <= 0) { return false; } long long ans = 1; while(ans < n) { ans *= 2; } if(ans == n) { return true; } return false; } }; 运行结果 之后我会持续更新,如果喜欢我的文章,请记得一键三连哦,点赞关注收藏,你的每一个赞每一份关注每一次收藏都将是我前进路上的无限动力 !!!↖(▔▽▔)↗感谢支持!