编写题解 1012: [编程入门]字符串分类统计
摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>#include <string.h>int main(){ char str[100];……
用c语言解决字符串分类统计
摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main() { char ch;int j,z,k,s; j=z=k=s=0; while((ch=getc……
编写题解 1012: [编程入门]字符串分类统计python
摘要:解题思路:注意事项:参考代码:m=input()a,b,c,d=0,0,0,0if len(m)<200: for i in m: &nbs……
编写题解 1012: [编程入门]字符串分类统计
摘要: #include #include #include #include #include using namespace std;……
T1012 字符串分类统计
摘要:解题思路:注意事项:参考代码:s=input()a,b,c,d=0,0,0,0for i in s:if i.isalpha(): a=a+1 ……