题解 1118: Tom数

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

筛选

Tom数 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<string.h> int main(){ char a[100][1000]; int sum=0,i……

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

摘要:看到2^32就知道数据很大 要用大数模板 ```cpp #include #include using namespace std; const int maxn=100000; ch……

TOM数(C语言)不用数组

摘要:解题思路:输入一次a,输出一次结果注意事项:注意输入数据的范围是比int要大的所以用int会出问题参考代码:#include <stdio.h>int main(){ long int a;   //……

Tom数(c语言)

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

Tom数 (C语言代码)

摘要:解题思路:n与10进行取余,把取余的结果和Tom进行累加,然后n/10,接着重复上一次的操作,直至n=0为止。注意事项:参考代码:#include <stdio.h>int main(){ long ……

字符数组解Tom数

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

字符与数字的转换,列表求和

摘要:解题思路:外层循环保证持续输入,列表d需要结束后恢复空列表注意事项:参考代码:while True:    a=int(input())    d=[]    for i in str(a):    ……