题解 1012: [编程入门]字符串分类统计

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

筛选

C++ 字符串分类统计

摘要: #include //这是个非常万能的头文件 using namespace std; int main() { int y = 0,s = 0,k = 0,q = 0;?//需……

字符串分类统计---正则表达式

摘要:解题思路: 我使用的正则表达式注意事项:参考代码:import java.util.Scanner; public class Main { public static void main(……

字符串分类统计

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){    char str[100];    int i,letter=0,nu……

[编程入门]字符串分类统计

摘要:解题思路:注意事项:参考代码:    #include <stdio.h>    #include <string.h>    /*    输入一行字符,分别统计出其中英文字母、数字、空格和其他字符的……

c语言代码解决问题

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){    char str[201];    gets(str);    str……