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
Tom数-题解(C++代码) 摘要:代码如下:主要利用字符和数字转换 #include #include using namespace std; int main() …… 题解列表 2020年02月02日 0 点赞 0 评论 427 浏览 评分:0.0
python解决Tom数 摘要:参考代码:def DigitCount(n): result = 0 while n != 0: result += n % 10 题解列表 2021年03月20日 0 点赞 0 评论 208 浏览 评分:0.0
Tom数(c语言) 摘要:注意事项: 定义的范围要大些 参考代码: ```c #include #include int main() { unsigned int a; while(scanf("%u"…… 题解列表 2023年08月30日 0 点赞 0 评论 160 浏览 评分:0.0
[推荐]题解1118:Tom数 用ascii码(Java代码) 摘要:解题思路:1.读入string 用 toCharArray 拆分成char数组,再减去48即可注意事项:注意:需要循环读入 while (scanner.hasNext()) { }参考代码:im…… 题解列表 2018年05月14日 1 点赞 0 评论 933 浏览 评分:0.0
字符数组解Tom数 摘要:解题思路:因为int范围最高到2的31次方-1,所以改为数组注意事项:参考代码: char str[100]; while(~scanf("%s",str)) { int l,su…… 题解列表 2023年12月12日 0 点赞 0 评论 48 浏览 评分:0.0
编写题解 1118: Tom数 摘要:解题思路:注意事项:参考代码:while True: try: print(sum(list(map(int, input())))) except: …… 题解列表 2024年04月10日 0 点赞 0 评论 107 浏览 评分:0.0
Tom数(Java代码) 摘要:```java import java.util.Scanner; public class Main { public static void main(String[] args) …… 题解列表 2022年04月19日 0 点赞 0 评论 192 浏览 评分:0.0
字符求(C语言代码) 摘要:解题思路: 2^32次方有点大 用longlong定义的话求余比较麻烦,所以就用字符串,再将字符化为数字求和注意事项: 参考代码:#include<stdlib.h> #include<str…… 题解列表 2020年09月26日 0 点赞 0 评论 619 浏览 评分:0.0
Tom数-题解(C语言代码) 骚操作 摘要:解题思路:将输入的数看为字符串 存放在数组中 将数组中每个元素相加注意事项:字符形式转为整形时 并不是字符1转为1 而是字符1转为ASCII中对应的数字49参考代码:#include <stdio.h…… 题解列表 2021年01月18日 0 点赞 0 评论 336 浏览 评分:0.0