题解 2846: 统计数字字符个数 摘要:参考代码:#include <bits/stdc++.h> using namespace std; int tong[150]; int main() { int sum=0; …… 题解列表 2023年10月14日 0 点赞 0 评论 157 浏览 评分:9.9
编写题解 2846: 统计数字字符个数 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;const int N = 1e7;ch…… 题解列表 2024年07月22日 0 点赞 0 评论 213 浏览 评分:9.9
统计数字字符个数用C++来实现 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<string>using namespace std;int main(){ string s; int…… 题解列表 2022年10月29日 0 点赞 0 评论 296 浏览 评分:9.9
优质题解 题解 2846: 统计数字字符个数 摘要:解题思路:1.创建一个字符串的变量a2.创建一个整型类型的变量sum用于储存一共有多少个数字,且要赋值sum为03.用代码getline输入a4.for循环(从0开始(因为数组的第一位是0)到该字符串…… 题解列表 2023年10月26日 0 点赞 1 评论 808 浏览 评分:9.9
题解 2846: 统计数字字符个数 摘要: #include using namespace std; const int N=300; int cnt; string a; int m…… 题解列表 2023年12月19日 0 点赞 0 评论 114 浏览 评分:9.9
比较常规的解题思路,挺清晰的 摘要:解题思路:注意事项:字符串中会有空格出现,用getline整行读取。参考代码:#includeusing namespace std; int main() { string s; …… 题解列表 2023年12月31日 0 点赞 0 评论 153 浏览 评分:9.9
2846: 统计数字字符个数 摘要:```cpp #include #include using namespace std; int main() { int s=0; char a[255]; …… 题解列表 2022年11月30日 0 点赞 0 评论 213 浏览 评分:8.0
优质题解 统计数字字符个数(C++代码解析和题解) 摘要:代码解析:首先,定义了一个函数 count_digits,它的输入参数是一个字符串 str,表示要统计的字符串。函数返回字符串中数字字符的个数。在函数内部,初始化一个计数变量 count 为0。然后,…… 题解列表 2023年07月17日 0 点赞 0 评论 873 浏览 评分:6.3
2846: 统计数字字符个数 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;const int N=1e5;char a[N];int main(){ …… 题解列表 2024年07月11日 0 点赞 0 评论 53 浏览 评分:0.0
2846: 统计数字字符个数 摘要:解题思路:注意事项:要输入字符0到字符9参考代码:#include <bits/stdc++.h>using namespace std;char s[100000];int main(){ i…… 题解列表 2023年10月28日 0 点赞 0 评论 56 浏览 评分:0.0