[编程入门]字符串分类统计
摘要:参考代码:#include<stdio.h>#include<string.h>#include<ctype.h>int main(){ char str[200]; int len,le……
利用<ctype.h>进行字符串分类统计
摘要:解题思路:利用<ctype.h>进行字符串分类统计;注意事项:不要一个一个输入字符,直接一次输入一个字符串;参考代码:#pragma warning(disable:4996)#include <st……
LULU——题解 1012: [编程入门]字符串分类统计
摘要:#include<stdio.h>#include<iostream>#include<string.h>using namespace std;int main(){ int num=0,lette……
[编程入门]字符串分类统计-题解(Java代码)sky
摘要:```java
import java.util.Scanner;
public class Main {
public static void main(String[] args) {……
[编程入门]字符串分类统计-题解(Python代码)
摘要:```python
# coding=utf-8
z=input()
a=b=c=d=0
for i in range(len(z)):
if ((ord(z[i])>=65 a……
1012 又学到了不少
摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <ctype.h>int main(){ int i=0,j=0,x=0,y=0,c; ……
编写题解 1012: [编程入门]字符串分类统计
摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ int letter=0,number=0,space=0,other=0;……
[编程入门]字符串分类统计-题解(C语言代码)
摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ char ch; int a=0,b=0,c=0,d=-1; while (ch!='\n')……