私信TA
用户名:uq_93105092774
访问量:6559
签 名:
自我简介:
作者: 天空一抹蓝 发表时间:2021-03-20 09:56:21 浏览:150 | 评论:0
参考代码:
def DigitCount(n): result = 0 while n != 0: result += n % 10 n //= 10 return result while 1: n = int(input()) print(DigitCount(n))
0.0分
0 人评分
看不懂代码解释一下代码? 或者生成一段代码?试试AI编程助手吧