tom问题 (C语言解法) 摘要:#include<stdio.h>int main(){ long n,sum; while(scanf("%ld",&n)!=EOF) { sum=0; …… 题解列表 2021年10月23日 0 点赞 0 评论 255 浏览 评分:6.0
Tom数(c语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { long long n; while(~scanf("%lld",&n)) …… 题解列表 2021年10月31日 0 点赞 0 评论 259 浏览 评分:6.0
C++简单易懂,整除和取余 摘要:解题思路:看代码注释!!!参考代码:#include<bits/stdc++.h> using namespace std; int main(){ long long n; whil…… 题解列表 2021年11月03日 0 点赞 0 评论 612 浏览 评分:0.0
编写题解 1118: Tom数 摘要:解题思路:注意事项:参考代码:while True: try: n = str(input()) sum = 0 for i in n: …… 题解列表 2021年12月10日 0 点赞 0 评论 185 浏览 评分:0.0
c语言tom数,用字符数组尝试 摘要:解题思路:注意事项:这个主要是给大家个其他想法,换个思路搞一下参考代码:#include<stdio.h>#include<stdlib.h>#include<string.h>int main(){…… 题解列表 2021年12月16日 0 点赞 0 评论 185 浏览 评分:6.0
无穷大也可以算,不需要数组 摘要:int main(){ char c; int state = 0; int sum = 0; while((state = scanf("%c", &c)) != EOF){ …… 题解列表 2022年01月23日 0 点赞 0 评论 145 浏览 评分:0.0
Hifipsysta-1118题-Tom数(C++代码)字符串法 摘要: ```cpp #include #include #include using namespace std; int main(){ string str; wh…… 题解列表 2022年01月30日 0 点赞 0 评论 141 浏览 评分:0.0
1118: Tom数(python) 摘要:解题思路:注意事项:参考代码:while(True): a=input() sum=0 for i in a: sum+=int(i) print(sum)…… 题解列表 2022年02月05日 0 点赞 0 评论 520 浏览 评分:9.9
明明白白的 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ long int n; while (scanf("%d", &n) != EOF) { long int s…… 题解列表 2022年02月07日 0 点赞 0 评论 137 浏览 评分:0.0
int 变 long long 摘要:解题思路:之前过不了看了一下别人的代码,发现他这个地方的问题只需要把int 全部换成long long 就行了,这个在数据很大时都适用注意事项:参考代码:#include<stdio.h>int ma…… 题解列表 2022年02月08日 0 点赞 2 评论 460 浏览 评分:8.0