Tom数-题解(Python代码) 摘要:```python import sys while True: line = sys.stdin.readline().strip() if not line: …… 题解列表 2021年04月11日 0 点赞 0 评论 223 浏览 评分:0.0
Tom数-题解(Python代码) 摘要:代码如下: ```python while True: print(sum([int(i) for i in input()])) ``` 循环加sum函数,然后里面将输入的字符串遍…… 题解列表 2020年02月01日 0 点赞 0 评论 539 浏览 评分:0.0
1118: Tom数-题解(python) 摘要:解题思路:注意事项:参考代码:while True: a = input() l = [] for i in a: l.append(int(i)) m = su…… 题解列表 2021年10月19日 0 点赞 0 评论 123 浏览 评分:0.0
1118一行解(Python) 摘要:解题思路:大体就是将字符串中的每一个元素添加进列表,用sum对列表求和注意事项:注意最后一个元素为'\n'时要去除参考代码:import sysfor line in sys.stdi…… 题解列表 2022年11月08日 0 点赞 0 评论 75 浏览 评分:0.0
1行代码直接ac 摘要:解题思路:注意事项:参考代码 : while True: print(sum([int(i) for i in input()]))…… 题解列表 2022年04月06日 0 点赞 0 评论 151 浏览 评分:0.0
Tom数——求各个位上的数子之和 摘要:解题思路:注意事项:输入好像……,我看到之前有个作者用这种方法,我就参考了一下,具体原因我也不太清楚,希望有懂的同学留言一下参考代码:import sysfor i in sys.stdin: …… 题解列表 2023年03月17日 0 点赞 0 评论 64 浏览 评分:0.0
Tom数-题解(Python代码) 摘要:```python def calc(): while True: n = input() try: digitlist = …… 题解列表 2019年12月27日 0 点赞 0 评论 956 浏览 评分:0.0
小南解题--Tom数--97ms 摘要:try: while 1: a=input() sum=0 for i in a: sum+=int(i…… 题解列表 2022年06月01日 0 点赞 0 评论 172 浏览 评分:0.0
编写题解 1118: Tom数 摘要:解题思路:注意事项:参考代码:while True: try: print(sum(list(map(int, input())))) except: …… 题解列表 2024年04月10日 0 点赞 0 评论 107 浏览 评分:0.0
Tom数-题解(Python代码) 摘要:```python k=100 while k>0: n=str(input()) l=[] s=0 for i in n: l.append(i) for j in l…… 题解列表 2020年02月05日 0 点赞 1 评论 576 浏览 评分:0.0