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

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

筛选

java--study||O.o

摘要:参考代码:import java.util.Scanner; public class Main { public static void main(String[] args) { Sc……

自定义字符类型统计

摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>void tongji(char a[1000],  int *letter, int *num……

字符类型统计

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int *tongji(char *a){ int i; static int b[4]={0}; for(i=0;*(a+i)!=&#……

自定义函数之字符类型统计

摘要:解题思路:注意事项:参考代码:def function(x):     a, b, c, d = 0, 0, 0, 0     for i in x:         if i.isalpha(……

无聊的星期六

摘要:n=input() l1=l2=l3=l4=0 for i in range(len(n)):     if n[i].isspace():         l1+=1     elif n……