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: 统计数字字符个数 摘要:#include<stdio.h> #include<math.h> #include<string.h> # define N 255 int main() { char…… 题解列表 2023年03月05日 0 点赞 0 评论 134 浏览 评分:0.0
优质题解,回归真神的初始途径 摘要:解题思路:注意事项:参考代码:chuan=input()j=0for fu in chuan: if fu.isdigit(): j+=1print(j)…… 题解列表 2024年07月25日 0 点赞 0 评论 169 浏览 评分:0.0
给用Java的开一下荒土 摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class Main { public static void main(String[] a…… 题解列表 2023年04月05日 0 点赞 0 评论 103 浏览 评分:0.0
2846: 统计数字字符个数 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;int main(){ string s…… 题解列表 2024年07月13日 0 点赞 0 评论 81 浏览 评分:0.0
2846: 统计数字字符个数 摘要:``` #include using namespace std; int main(){ int cnt=0; string s; getline(cin,s); for(in…… 题解列表 2023年12月19日 0 点赞 0 评论 71 浏览 评分:0.0
统计数字字符个数(python) 摘要:解题思路:注意事项:参考代码:a=input()s=[]for i in a: if i in'1234567890': s.append(i)print(len(…… 题解列表 2023年06月09日 0 点赞 0 评论 82 浏览 评分:0.0
2846: 统计数字字符个数,使用scanf和fgets的方式实现 摘要:解题思路:1)如果输入字符串,我们可以根据其结尾的'\0'代表是否输入完成注意事项:2)可以使用scanf,配合字符集匹配来完成,[ ]: 方括号表示一个字符类,它匹配方括号内的任意一…… 题解列表 2024年01月19日 0 点赞 0 评论 184 浏览 评分:0.0
2846: 统计数字字符个数 摘要:参考代码:s = input() sum = 0 for i in s: if i.isdigit(): sum += 1 print(sum)…… 题解列表 2024年03月23日 0 点赞 0 评论 104 浏览 评分:0.0
喜欢简单的可以看一下 摘要:解题思路:注意事项:count一定要初始化为0,而且数字字符记得带单引号参考代码:#include<stdio.h>int main(){char str[255];int i,count=0;get…… 题解列表 2023年01月19日 0 点赞 0 评论 141 浏览 评分:0.0