题解 2846: 统计数字字符个数

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

2846: 统计数字字符个数

摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;const int N = 1e7;ch……

统计数字字符个数(python)

摘要:解题思路:注意事项:参考代码:a=input()s=[]for i in a:    if i in&#39;1234567890&#39;:        s.append(i)print(len(……

喜欢简单的可以看一下

摘要:解题思路:注意事项:count一定要初始化为0,而且数字字符记得带单引号参考代码:#include<stdio.h>int main(){char str[255];int i,count=0;get……

统计数字字符个数java

摘要:解题思路:注意事项:参考代码:package arrLast; //题目 2846: 统计数字字符个数 import java.util.Scanner; public class t_2846……

统计数字字符

摘要:解题思路:0-9 10个数注意事项:参考代码:s=input()b=0for i in range(0,10):    cn=s.count(str(i))    b+=cnprint(b)……

统计数字字符个数

摘要:解题思路:用ASCII码值实现注意事项:参考代码:#define _CRT_SECURE_NO_WARNINGS#include <stdio.h>void countnumber(const cha……

2846: 统计数字字符个数

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;const int N=300;int main(){ int sum=0; str……

2846: 统计数字字符个数

摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;const int N=1e5;char a[N];int main(){    ……