Tom数 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<string.h> int main(){ char a[100][1000]; int sum=0,i…… 题解列表 2017年10月22日 1 点赞 1 评论 690 浏览 评分:0.0
Tom数-题解(C++代码) 摘要:看到2^32就知道数据很大 要用大数模板 ```cpp #include #include using namespace std; const int maxn=100000; ch…… 题解列表 2020年04月07日 0 点赞 0 评论 266 浏览 评分:0.0
Tom数-题解(C语言代码) 摘要:#include int main() { int n,s=0,t=0; while(~scanf("%d",&n)) { while(n>0) { t=n%10; …… 题解列表 2020年02月10日 0 点赞 0 评论 392 浏览 评分:0.0
TOM数(C语言)不用数组 摘要:解题思路:输入一次a,输出一次结果注意事项:注意输入数据的范围是比int要大的所以用int会出问题参考代码:#include <stdio.h>int main(){ long int a; //…… 题解列表 2021年09月01日 0 点赞 0 评论 135 浏览 评分:0.0
Tom数(c语言) 摘要:注意事项: 定义的范围要大些 参考代码: ```c #include #include int main() { unsigned int a; while(scanf("%u"…… 题解列表 2023年08月30日 0 点赞 0 评论 151 浏览 评分:0.0
Tom数 (C语言代码) 摘要:解题思路:n与10进行取余,把取余的结果和Tom进行累加,然后n/10,接着重复上一次的操作,直至n=0为止。注意事项:参考代码:#include <stdio.h>int main(){ long …… 题解列表 2019年01月20日 0 点赞 0 评论 614 浏览 评分:0.0
Tom数-题解(Python代码)拆分成字符串 摘要:解题思路:注意事项:参考代码:while(1): str=input() s=0 for i in str: …… 题解列表 2020年07月22日 0 点赞 0 评论 238 浏览 评分:0.0
字符数组解Tom数 摘要:解题思路:因为int范围最高到2的31次方-1,所以改为数组注意事项:参考代码: char str[100]; while(~scanf("%s",str)) { int l,su…… 题解列表 2023年12月12日 0 点赞 0 评论 44 浏览 评分:0.0
镜牙-------Tom数 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ unsigned int n; int a[100],i,j,t,sum=0; while(scanf("%…… 题解列表 2019年03月09日 0 点赞 0 评论 388 浏览 评分:0.0
字符与数字的转换,列表求和 摘要:解题思路:外层循环保证持续输入,列表d需要结束后恢复空列表注意事项:参考代码:while True: a=int(input()) d=[] for i in str(a): …… 题解列表 2022年04月05日 0 点赞 0 评论 161 浏览 评分:0.0