简单易懂while循环就可以完成
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ long int a,n,Tom; while(scanf("%ld",&n)!=EOF) { ……
编写题解 1118: Tom数 简单易懂
摘要:类型选择很重要!!
这里的类型不能用int,int的范围小,会发生越界导致错误
所以我换成了long类型的
```java
import java.util.Scanner;
publi……
1118: Tom数 C++
摘要:解题思路:注意事项:参考代码:#include<iostream>
using namespace std;
int main()
{
long long n;
while(cin >>……
1118Tom数(单个字符while循环求和输出)
摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cstring>using namespace std;int main(){ char a; int sum = ……
超级简单的c++(新手教程)
摘要:解题思路:连续用两个while循环,第一个是为了不停的获取数字,第二个才是每个数字的具体实现。在第二个while循环中,用n%10不停的取最后一位数字,直到n/10为零的时候,说明取完了。再用sum不……
编写题解 1118: Tom数
摘要:解题思路:注意事项:参考代码:while True:
try:
print(sum(list(map(int, input()))))
except:
……
不知道为什么只有一半的分数 帮看感谢
摘要:```c
#include
int main()
{
long long n;
long long sum;
while((scanf("%lld",&n))!=E……