题解 1118: Tom数

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

筛选

Tom数-题解(C++代码)

摘要:解题思路: 直接把输入当做字符串处理,求和的时候再转化整数求; 代码: ```cpp #include using namespace std; int main() { ……

Tom数-题解(C++代码)

摘要:代码如下:主要利用字符和数字转换 #include #include using namespace std; int main() ……

Tom数-题解(Python代码)

摘要:代码如下: ```python while True: print(sum([int(i) for i in input()])) ``` 循环加sum函数,然后里面将输入的字符串遍……

Tom数-题解(C++代码)

摘要:```cpp #include using namespace std; int main(void) { char a[100]; long long sum; while(ge……