标签:
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; } }
258. Add Digits
原文地址:http://www.cnblogs.com/aguai1992/p/5664296.html