欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

【leetcode】每日一题(258 各位相加)

程序员文章站 2024-03-09 08:15:11
...

【leetcode】每日一题(258 各位相加)
代码实现

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);
}