小南解题--Tom数--97ms 摘要:try: while 1: a=input() sum=0 for i in a: sum+=int(i…… 题解列表 2022年06月01日 0 点赞 0 评论 169 浏览 评分:0.0
Tom数-题解(Python代码) 摘要:```python def calc(): while True: n = input() try: digitlist = …… 题解列表 2019年12月27日 0 点赞 0 评论 942 浏览 评分:0.0
Tom数 (C语言代码) 摘要:#include <stdio.h>int main(){ int s; long long n; while(scanf("%lld",&n)!=EOF) { …… 题解列表 2018年02月02日 0 点赞 0 评论 472 浏览 评分:0.0
1行代码直接ac 摘要:解题思路:注意事项:参考代码 : while True: print(sum([int(i) for i in input()]))…… 题解列表 2022年04月06日 0 点赞 0 评论 143 浏览 评分:0.0
python解决Tom数 摘要:参考代码:def DigitCount(n): result = 0 while n != 0: result += n % 10 题解列表 2021年03月20日 0 点赞 0 评论 205 浏览 评分:0.0
Tom数 (C语言代码)新手进,易懂,大佬勿喷。 摘要:解题思路:利用字符串读入,再利用for循环逐字符读出,将字符型0-9转换成整型0-9,最后实现累加。注意事项:注意输入输出格式,防止超限。参考代码:#include<stdio.h> #includ…… 题解列表 2018年03月28日 1 点赞 0 评论 676 浏览 评分:0.0
1118:TOM数超简单字符数组算法 摘要:解题思路:字符数组,记得-‘0’将字符转换成数字注意事项:参考代码:#include <iostream>#include <cstdio>#include <cstring>#include <al…… 题解列表 2023年05月25日 0 点赞 0 评论 101 浏览 评分:0.0
Tom数 (C++代码) 摘要:解题思路:使用字符数组,逐个进行相加注意事项:注意负数参考代码:#include<iostream>#include<cstdio>#include<cstring>using namespace s…… 题解列表 2019年03月31日 0 点赞 0 评论 283 浏览 评分:0.0
Tom数 (C语言代码)不要开数组!!!! 摘要:解题思路: 由于数据量非常大,如果你要利用一个数组读取得话,可能会有各种问题,请使用while循环进行输入+一个字符+一个整形就可以完成全部得运算了!参考代码:【C语言版】#includ…… 题解列表 2018年11月30日 0 点赞 0 评论 381 浏览 评分:0.0
简单想法 简单思路 简单代码 java实现 摘要:解题思路:将每一行接收位Sring 然后通过split分割成每位字符串数字用String数组保存起来最后用一个for循环通过parseInt将每一位转成int后累加即可注意事项:参考代码:class…… 题解列表 2022年03月08日 0 点赞 0 评论 201 浏览 评分:0.0