真。。简。Tom数 (C语言代码)绝对看得懂。 摘要:解题思路:分别求出各位数再求和。注意事项:参考代码:#include<stdio.h> int main() { int sum; long long n,m; while(…… 题解列表 2019年02月05日 1 点赞 2 评论 447 浏览 评分:0.0
Tom数 (C语言代码) 摘要:解题思路:不知道错哪了注意事项:参考代码:#include <stdio.h>#include <stdlib.h>#include <string.h> int main() { long lon…… 题解列表 2019年03月15日 0 点赞 0 评论 320 浏览 评分: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数-题解(C++代码) 摘要:``` #include using namespace std; int main(void){ long long int n; while(cin>>n){ int sum=…… 题解列表 2020年02月11日 0 点赞 0 评论 270 浏览 评分:0.0
Tom数-题解(C语言代码) 摘要: #include #include int main(){ char a[100000]; int b[100000]; int i,l…… 题解列表 2020年04月08日 0 点赞 0 评论 303 浏览 评分: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语言代码) 摘要:#include<cstdio> #include<iostream> using namespace std; int main(void) { char s[15]; …… 题解列表 2017年08月04日 0 点赞 0 评论 930 浏览 评分: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 评论 46 浏览 评分:0.0