1118: Tom数(c++代码) 摘要:```cpp #include #include using namespace std; int main() { char *str; int tom; w…… 题解列表 2022年09月11日 0 点赞 1 评论 408 浏览 评分:9.9
Tom数(C++简单) 摘要:解题思路:注意事项:2^32数很大,int 存不下,可以用long long;参考代码:#include<iostream> using namespace std; #include<cmath…… 题解列表 2022年11月02日 0 点赞 0 评论 270 浏览 评分:9.9
Tom数的题解 为什么老说我标题短 摘要:解题思路:字符串注意事项:无参考代码:#include <iostream>#include<string.h>using namespace std;int main(){ int sum =…… 题解列表 2023年04月19日 0 点赞 0 评论 159 浏览 评分:9.9
超简单的C++ 摘要:参考代码:#include<iostream> using namespace std; int main() { long long int sum; long long …… 题解列表 2022年11月24日 0 点赞 0 评论 207 浏览 评分:9.9
吾乃元始天尊!!!1118: Tom数 摘要:```cpp #include using namespace std; string s1; int main() { int i,sum=0; while(cin>>s1) …… 题解列表 2022年12月14日 0 点赞 0 评论 371 浏览 评分:9.9
Tom数的解法 摘要:# 1、定义 ```cpp #include #include using namespace std; char *str; int tom; ``` # 2、输入 看似很困难,其…… 题解列表 2022年05月09日 0 点赞 0 评论 712 浏览 评分:9.9
冲冲冲,简单易懂 摘要:解题思路:用一个字符串来接受一个数就可,通过一个while 来实现多组输入。注意事项:参考代码:#include <bits/stdc++.h>using namespace std;//把它看做一个…… 题解列表 2021年03月28日 0 点赞 0 评论 409 浏览 评分:9.3
Tom数 (C++代码) 摘要:解题思路:看到2^32果断转字符串吧,也别大数模板了...注意事项:循环输入,你没说我知道个毛啊...参考代码:#include <iostream> #include <string> us…… 题解列表 2018年10月13日 1 点赞 1 评论 1533 浏览 评分:9.2
1118: Tom数(c++) 摘要:```cpp #include using namespace std; int main() { long long int num; int Tom = 0; while (ci…… 题解列表 2022年11月16日 0 点赞 0 评论 149 浏览 评分:9.0
Tom数-题解(C++代码) 摘要:注意事项: 因为最大数到了2^32,直接开long long型接收输入参考代码:#include <bits/stdc++.h> using namespace std; int mai…… 题解列表 2020年08月15日 0 点赞 0 评论 758 浏览 评分:9.0