题解 1118: Tom数

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

筛选

Tom数 (Java代码)

摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args) {……

Tom数 (C语言代码)

摘要:#include <stdio.h>int main(){     int s;     long long n;     while(scanf("%lld",&n)!=EOF)     {    ……

Tom数-题解(C语言)

摘要:```c #include #include int main() { char a[100000]; while(scanf("%s",&a)==1) { int sum……

Tom数 (C语言代码)

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

题解 1118: Tom数

摘要:解题思路:使用 int的话只能对一半,使用数组来存取数才可以存下去很大的数注意事项:参考代码:#include <stdio.h>#include <string.h>int main(){   ch……

Tom数 (Java代码)

摘要:解题思路:a.charAt(i)遍历每个字符,将字符转化成数字注意事项:a.charAt(i)-&#39;0&#39;得到a[i]中存储的数字字符对应a数组中哪一个下标,也是将字符转成数字参考代码:i……

Tom数 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { int n,s; while(scanf("%d",&n)!=EOF) {      s=0; while(……

编写题解 1118: Tom数

摘要:解题思路:注意事项:参考代码:while True:    try:        n = str(input())        sum = 0        for i in n:        ……