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

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

筛选

字符串分类统计 题解(简单啦)

摘要:解题思路:输入字符串,判断,计数,输出,欧了。注意事项:要用getline输入!参考代码:#include<bits/stdc++.h>using namespace std;string s;int……

字符串分类统计

摘要:#include <stdio.h>int main(){ int num=0,blank=0,word=0,other=0; char a; while((a=getchar())!=&#39;\n……