题解 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 ……

1012,好懂的方法

摘要:解题思路:注意事项:参考代码: #include<stdio.h>int main(){ char a; int b=0,c=0,d=0,e=0,f=0; a=getchar(); while(a!=……