Tom数 (C语言代码) 摘要:解题思路:注意事项:参考代码:编译错误#include<stdio.h>int fac(unsigned int n, int s = 0){ s += n % 10; n /= 10; …… 题解列表 2019年05月30日 0 点赞 0 评论 317 浏览 评分:0.0
Tom数 (C语言代码) 摘要:解题思路:刚刚好像是那个sum初始化位置弄错了注意事项:参考代码:#include<stdio.h>#include<string.h>#include<stdlib.h>int main(){ c…… 题解列表 2017年10月20日 0 点赞 0 评论 691 浏览 评分:0.0
1行代码直接ac 摘要:解题思路:注意事项:参考代码 : while True: print(sum([int(i) for i in input()]))…… 题解列表 2022年04月06日 0 点赞 0 评论 143 浏览 评分:0.0
Tom数-题解(Python代码) 摘要:```python import sys while True: line = sys.stdin.readline().strip() if not line: …… 题解列表 2021年04月11日 0 点赞 0 评论 221 浏览 评分:0.0
Tom数-题解(Java代码) 摘要:public class Seq1118 { public static void main(String[] args) { Scanner sc = new Scann…… 题解列表 2019年12月17日 0 点赞 0 评论 1029 浏览 评分:0.0
1118:TOM数超简单字符数组算法 摘要:解题思路:字符数组,记得-‘0’将字符转换成数字注意事项:参考代码:#include <iostream>#include <cstdio>#include <cstring>#include <al…… 题解列表 2023年05月25日 0 点赞 0 评论 101 浏览 评分:0.0
Tom数 (C语言代码)新手进,易懂,大佬勿喷。 摘要:解题思路:利用字符串读入,再利用for循环逐字符读出,将字符型0-9转换成整型0-9,最后实现累加。注意事项:注意输入输出格式,防止超限。参考代码:#include<stdio.h> #includ…… 题解列表 2018年03月28日 1 点赞 0 评论 676 浏览 评分:0.0
Tom数 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <iostream>#include<stdio.h>using namespace std;int main(){ unsigned int a…… 题解列表 2018年01月04日 0 点赞 0 评论 588 浏览 评分:0.0
简单想法 简单思路 简单代码 java实现 摘要:解题思路:将每一行接收位Sring 然后通过split分割成每位字符串数字用String数组保存起来最后用一个for循环通过parseInt将每一位转成int后累加即可注意事项:参考代码:class…… 题解列表 2022年03月08日 0 点赞 0 评论 201 浏览 评分:0.0
Tom数 (C++代码) 摘要:解题思路:字符串存储输入的数,因为普通的数据类型会越界。注意事项:没有啥注意事项,20行代码就行,思路很简单。参考代码:#include <iostream>#include <cstring>usi…… 题解列表 2018年01月30日 1 点赞 0 评论 806 浏览 评分:2.0