题目:给定一个非负整数 num,反复将各个位上的数字相加,直到结果为一位数。返回这个结果。
【[Golang]力扣Leetcode - 258. 各位相加】链接: 力扣Leetcode - 258. 各位相加.
示例 1:
输入: num = 38示例 2:
输出: 2
解释: 各位相加的过程为:
38 --> 3 + 8 --> 11
11 --> 1 + 1 --> 2
由于 2 是一位数,所以返回 2。
输入: num = 0思路:求出每一位再相加,如果还是大于一位数,继续循环,每一位再相加,直到和为一位数跳出循环输出。
输出: 0
Go代码:
package mainimport "fmt"func addDigits(num int) int {
for num >= 10 {
sum := 0
for num != 0 {
a := num % 10 // 取出个位
sum += a// 每一位加起来
num = (num - a) / 10
}
num = sum
}
return num
}func main() {
fmt.Println(addDigits(38))
}
提交截图:
文章图片
推荐阅读
- [Golang]力扣Leetcode - 58. 最后一个单词的长度
- [Golang]力扣Leetcode - 53.最大子数组和(动态规划)
- [Golang]力扣Leetcode - 27. 移除元素
- [Golang]力扣Leetcode - 2、两数相加
- [Golang]力扣Leetcode—剑指Offer—字符串—58 - II. 左旋转字符串
- [Golang]力扣Leetcode—剑指Offer—字符串—05. 替换空格
- [Golang]力扣Leetcode—剑指Offer—数组—61. 扑克牌中的顺子
- [Golang]力扣Leetcode—剑指Offer—数组—53 - II. 0~n-1中缺失的数字(求和、二分法)
- [Golang]力扣Leetcode—剑指Offer—数组—17.打印从1到最大的n位数(遍历)