题解 1118: Tom数

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

1118: Tom数-题解(python)

摘要:解题思路:注意事项:参考代码:while True:    a = input()    l = []    for i in a:        l.append(int(i))    m = su……

Tom数-题解(C++代码)

摘要:代码如下:主要利用字符和数字转换 #include #include using namespace std; int main() ……

python解决Tom数

摘要:参考代码:def DigitCount(n):     result = 0     while n != 0:         result += n % 10       

Tom数(c语言)

摘要:注意事项: 定义的范围要大些 参考代码: ```c #include #include int main() { unsigned int a; while(scanf("%u"……

字符数组解Tom数

摘要:解题思路:因为int范围最高到2的31次方-1,所以改为数组注意事项:参考代码: char str[100];   while(~scanf("%s",str))   {       int l,su……

编写题解 1118: Tom数

摘要:解题思路:注意事项:参考代码:while True:     try:         print(sum(list(map(int, input()))))     except:     ……

Tom数(Java代码)

摘要:```java import java.util.Scanner; public class Main { public static void main(String[] args) ……

字符求(C语言代码)

摘要:解题思路:  2^32次方有点大   用longlong定义的话求余比较麻烦,所以就用字符串,再将字符化为数字求和注意事项:  参考代码:#include<stdlib.h> #include<str……

Tom数-题解(C语言代码) 骚操作

摘要:解题思路:将输入的数看为字符串 存放在数组中 将数组中每个元素相加注意事项:字符形式转为整形时 并不是字符1转为1 而是字符1转为ASCII中对应的数字49参考代码:#include <stdio.h……