解 2846: 统计数字字符 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;char a[1005];int main(){ int sum=0; cin.g…… 题解列表 2024年07月11日 0 点赞 0 评论 59 浏览 评分:0.0
2846: 统计数字字符个数Java 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args…… 题解列表 2023年05月08日 0 点赞 0 评论 122 浏览 评分:0.0
统计数字字符 摘要:解题思路:0-9 10个数注意事项:参考代码:s=input()b=0for i in range(0,10): cn=s.count(str(i)) b+=cnprint(b)…… 题解列表 2024年01月23日 0 点赞 0 评论 93 浏览 评分:0.0
统计数字字符个数 摘要:、解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ int i,n=0; char a[255]; …… 题解列表 2022年12月30日 0 点赞 0 评论 169 浏览 评分:0.0
2846: 统计数字字符个数 摘要:```cpp #include using namespace std; typedef long long ll; const int N=1e5; char a[N]; int ma…… 题解列表 2024年07月12日 0 点赞 0 评论 83 浏览 评分:0.0
优质题解,回归真神的初始途径 摘要:解题思路:注意事项:参考代码:chuan=input()j=0for fu in chuan: if fu.isdigit(): j+=1print(j)…… 题解列表 2024年07月25日 0 点赞 0 评论 169 浏览 评分:0.0
2846: 统计数字字符个数 摘要:解题思路:了解字符串的处理注意事项:只需计算数字的个数,注意字符串结尾的'\0'参考代码:#include<stdio.h>#include<string.h> //处理字符…… 题解列表 2023年08月20日 0 点赞 0 评论 151 浏览 评分:0.0
Python统计数字字符个数 摘要:解题思路:注意事项:参考代码:n=input()count=0for i in n: if i>='0' and i<='9': count+=1p…… 题解列表 2023年02月10日 0 点赞 0 评论 144 浏览 评分:0.0
2846: 统计数字字符个数 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;const int N=300;int main(){ int sum=0; str…… 题解列表 2023年12月19日 0 点赞 0 评论 56 浏览 评分:0.0
2846: 统计数字字符个数 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;const int N = 1e7;ch…… 题解列表 2024年07月18日 0 点赞 0 评论 136 浏览 评分:0.0