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

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

筛选

for循环统计(c语言)

摘要:解题思路:注意事项:如果不是if{}else if{}的形式,内存会过大。参考代码:#include #include int main(void) {     char str[200]; ……

getchar解决问题

摘要:解题思路:先输入再用字符比较注意事项:i与j的比较参考代码:#include <stdio.h>int main(){ int word = 0, number = 0, tab = 0, other……

字符串分类统计

摘要: #include using namespace std; int main() { int num = 0, letter = 0, space =……

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

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