2007: 计算输入数据的和与乘积 摘要:解题思路:注意事项:参考代码:n = input() h=0 s=1 for i in n: h += int(i) s *= int(i) print(h,s)…… 题解列表 2022年01月05日 0 点赞 0 评论 194 浏览 评分:4.0