题解 1063: 二级C语言-统计字符

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

筛选

c/c++方法 初学者思维

摘要:解题思路:注意事项:参考代码:void input() { char c; int letter = 0, space = 0, digit = 0, other = 0; while ……

二级C语言-统计字符

摘要:解题思路:暴力注意事项:没有参考代码:#include<bits/stdc++.h>using namespace std;string s;long long yw,kg,sz,qt;int mai……

1063: 二级C语言-统计字符

摘要:```python ss = input() # 英文字母、空格、数字和其它字符 alpha,space,num,other=0,0,0,0 for i in ss: if i.is……

Java统计字符

摘要:解题思路:注意事项:参考代码:public class Main {    public static void main(String[] args) {        Scanner sc = n……

【C语言】新手解法

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ char c; int zimu=0,kong=0,shu=0,qita=0; while((c=getchar……

C二级辅导-统计字符 (C语言代码)

摘要:解题思路:注意事项:参考代码:/*输入一行字符,分别统计出其中英文字母、数字、空格和其他字符的个数*/#include<stdio.h>int zm=0,sz=0,kg=0,qt=0; //全局变量。……