题解 1035: [编程入门]自定义函数之字符类型统计

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

筛选

简单的令人发指

摘要:#include<stdio.h> #include<ctype.h> int main(void) {     char a[100];     gets(a);     int spa……

1035 字符类型统计

摘要:解题思路:#include<stdio.h>#include<ctype.h>int letters=0,digits=0,spaces=0,others=0;void cou……