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
统计数字字符个数(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
喜欢简单的可以看一下 摘要:解题思路:注意事项:count一定要初始化为0,而且数字字符记得带单引号参考代码:#include<stdio.h>int main(){char str[255];int i,count=0;get…… 题解列表 2023年01月19日 0 点赞 0 评论 141 浏览 评分:0.0
编写题解 2846: 统计数字字符个数java 摘要:解题思路:注意事项:参考代码:public class Test { public static void main(String[] args) { Scanner scanne…… 题解列表 2023年10月13日 0 点赞 0 评论 91 浏览 评分:0.0
统计数字字符个数java 摘要:解题思路:注意事项:参考代码:package arrLast; //题目 2846: 统计数字字符个数 import java.util.Scanner; public class t_2846…… 题解列表 2024年02月06日 0 点赞 0 评论 134 浏览 评分: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
统计数字字符个数 摘要:解题思路:用ASCII码值实现注意事项:参考代码:#define _CRT_SECURE_NO_WARNINGS#include <stdio.h>void countnumber(const cha…… 题解列表 2023年01月08日 0 点赞 0 评论 150 浏览 评分:0.0
字符串--1.统计数字字符个数 摘要:解题思路: 注意事项:参考代码:#include<stdio.h> #include<string.h> int main() { char str[255]; int count=0,…… 题解列表 2023年03月24日 0 点赞 0 评论 111 浏览 评分: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;const int N=1e5;char a[N];int main(){ …… 题解列表 2024年07月11日 0 点赞 0 评论 53 浏览 评分:0.0