public class Solution { public int addDigits(int num) { int temp=num; while(temp/10!=0) { int res=temp%10; while(temp/10!=0) { temp/=10; res+=temp%10; } temp=res; } return temp; }}
本文共 367 字,大约阅读时间需要 1 分钟。
public class Solution { public int addDigits(int num) { int temp=num; while(temp/10!=0) { int res=temp%10; while(temp/10!=0) { temp/=10; res+=temp%10; } temp=res; } return temp; }}
转载于:https://www.cnblogs.com/aguai1992/p/5664296.html