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

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

筛选

python用for解决

摘要:解题思路:注意事项:参考代码:str=input()a,b,c,d=0,0,0,0for i in str:    if (i>=&#39;A&#39; and i<=&#39;Z&#39;) or ……

字符串分类统计C++

摘要:解题思路:采用for循环输入,用gets而不用cin可以 输入空格注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ in……

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

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