【202.
Happy Number】壮心未与年俱老,死去犹能作鬼雄。这篇文章主要讲述202.
Happy Number相关的知识,希望能为你提供帮助。
给定一个数,得到这个数的数位上的数字的平方和,然后循环,如果最后能等于1,则输出true,否则为false.
文章图片
难点:不知道这个数到底要循环多少轮才能得到1.
思路:设置一个最大的循环数(如:20轮),如果达到最大循环次数,还不等于1,则返回false.
#include< iostream> #include< math.h> #include< string> using namespace std; bool isHappy(int n) { string s = to_string(n); int ans = 0, count = 0; while (count < 20) { for (int i = 0; i < s.length(); i++) { ans += pow(int(s[i] - \'0\'), 2); } if (ans == 1) { return true; } count += 1; s = to_string(ans); ans = 0; } return false; } int main() { cout < < isHappy(0) < < endl; return 0; }
推荐阅读
- (开源)arduino连接ESP8266-01制作数据实时监测系统+手机App显示
- app专项测试
- 持续集成-UniApp
- device mapper
- android 如何获取连接wifi热点的设备数量
- Why invoke apply instead of calling function directly?
- Android TV : 系统分区配置及增加私有分区
- RichFaces开发应用程序示例图解
- java用eclipse在使用fx包时导入import javafx.application.Application;显示错误