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

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

筛选

字符串分类统计

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){char a[200];int i,z=0,s=0,k=0,q=0;gets(……

用字符函数解题

摘要:解题思路:1.定义一个字符串变量;              2.用getline(cin, str)输入(因为如果直接输入,如果输入空格输入就结束了;getline函数在string头文件里)   ……

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 # include # include int main(void) { int letter =0,number=0,blank=0,others=0,c; w……