C++ 字符串分类统计 摘要: #include //这是个非常万能的头文件 using namespace std; int main() { int y = 0,s = 0,k = 0,q = 0;?//需…… 题解列表 2023年09月08日 0 点赞 0 评论 213 浏览 评分:7.3
字符串分类统计----直接采用getchar()函数 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<string> using namespace std; int main() { int letter…… 题解列表 2023年09月03日 1 点赞 0 评论 80 浏览 评分:0.0
字符串分类统计---正则表达式 摘要:解题思路: 我使用的正则表达式注意事项:参考代码:import java.util.Scanner; public class Main { public static void main(…… 题解列表 2023年08月10日 0 点赞 0 评论 122 浏览 评分:0.0
1012: [编程入门]字符串分类统计 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int b[4]={0,0,0,0}; char a[200]; for (int i = 0; i != 2…… 题解列表 2023年08月01日 0 点赞 0 评论 86 浏览 评分:0.0
[编程入门]字符串分类统计 摘要:参考代码:#include<stdio.h>#include<string.h>#include<ctype.h>int main(){ char str[200]; int len,le…… 题解列表 2023年07月15日 0 点赞 0 评论 127 浏览 评分:9.9
字符串分类统计 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char str[100]; int i,letter=0,nu…… 题解列表 2023年07月07日 0 点赞 0 评论 53 浏览 评分:0.0
[编程入门]字符串分类统计 摘要:解题思路:注意事项:参考代码: #include <stdio.h> #include <string.h> /* 输入一行字符,分别统计出其中英文字母、数字、空格和其他字符的…… 题解列表 2023年07月05日 0 点赞 0 评论 64 浏览 评分:0.0
c语言代码解决问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char str[201]; gets(str); str…… 题解列表 2023年06月15日 0 点赞 0 评论 77 浏览 评分:0.0
[编程入门]字符串分类统计 摘要:一、解题思路:C参考代码:#include <stdio.h> #include <string.h> int main() { char str[200]; int z = 0, s…… 题解列表 2023年05月02日 0 点赞 0 评论 65 浏览 评分:8.0
1012题: 字符串分类统计 摘要:# 自己写的代码 ```c #include #include int main() { char a[100]; int b=0,c=0,d=0,e=0; gets(a);…… 题解列表 2023年04月26日 0 点赞 0 评论 68 浏览 评分:0.0