【leetcode】每日一题(258 各位相加)
程序员文章站
2024-03-09 08:15:11
...
代码实现
int addDigits(int num){
if(num==0)
{
return false;
}
int ans=0;
while(num)
{
ans+=num%10;
num/=10;
}
return ans<10 ? ans : addDigits(ans);
}
推荐阅读