C++简单易懂,整除和取余 摘要:解题思路:看代码注释!!!参考代码:#include<bits/stdc++.h> using namespace std; int main(){ long long n; whil…… 题解列表 2021年11月03日 0 点赞 0 评论 620 浏览 评分:0.0
1118Tom数(单个字符while循环求和输出) 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cstring>using namespace std;int main(){ char a; int sum = …… 题解列表 2024年06月12日 0 点赞 0 评论 82 浏览 评分:0.0
Tom数 (Java代码) 摘要:解题思路:注意事项:要考虑负数的情况,别被题目迷惑参考代码:import java.util.Scanner;public class Main { public static void main(S…… 题解列表 2018年07月06日 0 点赞 0 评论 689 浏览 评分:0.0
编写题解 1118: Tom数 摘要:解题思路:注意事项:参考代码:while True: try: n = str(input()) sum = 0 for i in n: …… 题解列表 2021年12月10日 0 点赞 0 评论 196 浏览 评分:0.0
Tom数-题解(Python代码) 摘要:```python def calc(): while True: n = input() try: digitlist = …… 题解列表 2019年12月27日 0 点赞 0 评论 957 浏览 评分:0.0
Tom数 (C++代码) 摘要:解题思路:利用stringstream把字符和数字进行安全的转换注意事项:不考虑超限的话,把a[11]改为a[10000]有非常惊奇的效果参考代码:#include <iostream>#includ…… 题解列表 2018年08月10日 0 点赞 0 评论 567 浏览 评分:0.0
1行代码直接ac 摘要:解题思路:注意事项:参考代码 : while True: print(sum([int(i) for i in input()]))…… 题解列表 2022年04月06日 0 点赞 0 评论 151 浏览 评分:0.0
Tom数 (C语言代码) 摘要:#include<stdio.h>int main(){ unsigned int m,j,sum=0;//既然是小于2的32次方的整数,那么就适合用无符号整型数 while(scanf("%u",&…… 题解列表 2017年06月18日 1 点赞 0 评论 1024 浏览 评分:0.0
WU-Tom数 (C语言代码) 摘要:参考代码:#include<stdio.h> int sum(char a[]) { int sum1=0,i; for(i=0;a[i]!='\0';i++) { …… 题解列表 2017年12月18日 6 点赞 0 评论 1021 浏览 评分:0.0
1118一行解(Python) 摘要:解题思路:大体就是将字符串中的每一个元素添加进列表,用sum对列表求和注意事项:注意最后一个元素为'\n'时要去除参考代码:import sysfor line in sys.stdi…… 题解列表 2022年11月08日 0 点赞 0 评论 75 浏览 评分:0.0