1118: Tom数(c++) 摘要:```cpp #include using namespace std; int main() { long long int num; int Tom = 0; while (ci…… 题解列表 2022年11月16日 0 点赞 0 评论 144 浏览 评分:9.0
Tom数(C++简单) 摘要:解题思路:注意事项:2^32数很大,int 存不下,可以用long long;参考代码:#include<iostream> using namespace std; #include<cmath…… 题解列表 2022年11月02日 0 点赞 0 评论 259 浏览 评分:9.9
1118: Tom数(c++代码) 摘要:```cpp #include #include using namespace std; int main() { char *str; int tom; w…… 题解列表 2022年09月11日 0 点赞 1 评论 404 浏览 评分:9.9
tom数c++题解 摘要:解题思路:注意事项:参考代码:#include using namespace std; int main(){ long long n,sum=0,s,temp; while(cin>>n)…… 题解列表 2022年08月11日 0 点赞 5 评论 64 浏览 评分:7.7
Tom数的解法 摘要:# 1、定义 ```cpp #include #include using namespace std; char *str; int tom; ``` # 2、输入 看似很困难,其…… 题解列表 2022年05月09日 0 点赞 0 评论 705 浏览 评分:9.9
十五行解决无废话 摘要:解题思路:利用ASC码进行字符与数字间的转换注意事项:无。参考代码:#include<bits/stdc++.h>using namespace std;int main(){ string str;…… 题解列表 2022年04月06日 0 点赞 0 评论 118 浏览 评分:8.0
c++ 基础题 1118: Tom数 摘要:解题注意: 主要是需要注意输入的数字大小(num){ // 输入数据, 注意数据大小 if(num == 0) cout…… 题解列表 2022年03月06日 0 点赞 0 评论 705 浏览 评分:8.3
用c++中string可以避免数据过大 摘要:解题思路:将输入的数据存入字符串类型的对象中,利用该对象自带的数组可以一个一个依次求和,注意将字符型转换为整型,“1”-“0”=1;即减去“0”即可。注意事项:参考代码:#include<iostre…… 题解列表 2022年03月03日 0 点赞 2 评论 327 浏览 评分:7.3
c++编写题解 1118: Tom数 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<vector> using namespace std; int main() { long l…… 题解列表 2022年02月26日 0 点赞 1 评论 306 浏览 评分:6.0
Hifipsysta-1118题-Tom数(C++代码)字符串法 摘要: ```cpp #include #include #include using namespace std; int main(){ string str; wh…… 题解列表 2022年01月30日 0 点赞 0 评论 139 浏览 评分:0.0