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

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

筛选

C++ 字符串分类统计

摘要: #include //这是个非常万能的头文件 using namespace std; int main() { int y = 0,s = 0,k = 0,q = 0;?//需……

c代码记录之字符串分类统计

摘要:解题思路:注意事项:scanf遇到空格停止读取输入,所以使用gets遍历到\0停止,因为字符串结尾默认\0参考代码:#include<stdio.h> int main() {     char……

字符串分类统计

摘要:解题思路:注意事项:这段代码没有考虑输入字符串中的特殊字符、标点符号等情况。它只会统计字母、数字、空格和其他字符的个数。参考代码:#include <stdio.h> #include <strin……

1012c语言代码

摘要:解题思路:注意事项:1,一定要记得初始化;2,回车键也算输入字符;参考代码:#include<stdio.h>int main(){ char a; int b=0,c=0,d=0,e=0; whil……

c++编写字符串分类统计

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(void){ int num=0,space=0,word=0,other=……

]字符串分类统计

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

1012字符串分类统计

摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){char c;int letters=0,space=0,dight=0,other=0;while((c=ge……

getchar解决问题

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

优优优质题解!!!!!

摘要:解题思路:注意事项:参考代码:public static void main(String[] args) {    int zimu =0;    int shuzi =0;    int kong……