2002: 计算数字个数 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cmath> #include<algorithm> using namespace std; int m…… 题解列表 2023年10月19日 0 点赞 0 评论 50 浏览 评分:0.0
计算数字个数 摘要:解题思路:用字符串注意事项:i的下标是0参考代码:#include<bits/stdc++.h>using namespace std;string z;long long s;int main(){…… 题解列表 2022年05月07日 0 点赞 0 评论 109 浏览 评分:0.0
计算数字个数-题解(C++代码) 摘要:#include<iostream> using namespace std; const int N = 10010; char c[N]; //定义一…… 题解列表 2022年01月28日 0 点赞 0 评论 80 浏览 评分:0.0
2002: 计算数字个数 摘要:#include<bits/stdc++.h> using namespace std; int main(){ string s; getline(cin,s); …… 题解列表 2021年12月26日 0 点赞 0 评论 116 浏览 评分:0.0
计算数字个数-题解(C++代码) 摘要:```cpp #include #include using namespace std; char str[1000]; int main(){ gets(str); int le…… 题解列表 2021年01月15日 0 点赞 0 评论 319 浏览 评分:2.0
计算数字个数-题解(C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<string>using namespace std;int main(){ string str; int sum…… 题解列表 2020年12月19日 0 点赞 0 评论 298 浏览 评分:2.7
计算数字个数-题解(C++代码) 摘要:```cpp #include using namespace std; int main(){ string s; cin>>s; int len=s.size(…… 题解列表 2020年04月24日 0 点赞 0 评论 288 浏览 评分:0.0
计算数字个数-题解(C++代码) 摘要:我的办法比较直接,不会的小伙伴可以看看,会的也可以借鉴哦:smile: #include #include using namespace std; i…… 题解列表 2020年01月25日 0 点赞 1 评论 979 浏览 评分:8.0
计算数字个数-题解(C++代码) string 摘要:一个字符串判断 char 或者 string 都可以 ```cpp #include using namespace std; int main() { //fr…… 题解列表 2019年06月11日 0 点赞 0 评论 508 浏览 评分:0.0