字符串--1.统计数字字符个数 摘要:解题思路: 注意事项:参考代码:#include<stdio.h> #include<string.h> int main() { char str[255]; int count=0,…… 题解列表 2023年03月24日 0 点赞 0 评论 111 浏览 评分:0.0
统计数字字符个数 摘要:解题思路:用ASCII码值实现注意事项:参考代码:#define _CRT_SECURE_NO_WARNINGS#include <stdio.h>void countnumber(const cha…… 题解列表 2023年01月08日 0 点赞 0 评论 150 浏览 评分:0.0
编写题解 2846: 统计数字字符个数java 摘要:解题思路:注意事项:参考代码:public class Test { public static void main(String[] args) { Scanner scanne…… 题解列表 2023年10月13日 0 点赞 0 评论 90 浏览 评分:0.0
优质题解,回归真神的初始途径 摘要:解题思路:注意事项:参考代码:chuan=input()j=0for fu in chuan: if fu.isdigit(): j+=1print(j)…… 题解列表 2024年07月25日 0 点赞 0 评论 169 浏览 评分:0.0
2846: 统计数字字符个数 摘要:``` #include using namespace std; int main(){ int cnt=0; string s; getline(cin,s); for(in…… 题解列表 2023年12月19日 0 点赞 0 评论 72 浏览 评分: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: 统计数字字符个数Java 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args…… 题解列表 2023年05月08日 0 点赞 0 评论 122 浏览 评分:0.0