自定义函数之字符类型统计 摘要:解题思路:注意事项:参考代码:def tongji(m): a,b,c,d = 0,0,0,0 for i in m: if i.isalpha(): …… 题解列表 2024年06月04日 0 点赞 0 评论 97 浏览 评分:0.0
无聊的星期六 摘要:n=input() l1=l2=l3=l4=0 for i in range(len(n)): if n[i].isspace(): l1+=1 elif n…… 题解列表 2024年05月25日 0 点赞 0 评论 149 浏览 评分:0.0
1035 字符类型统计(选择语句分别统计) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>#include<string.h>int main(){ char s[100]; gets(s)…… 题解列表 2024年05月16日 0 点赞 0 评论 212 浏览 评分:0.0
编写题解 1035: [编程入门]自定义函数之字符类型统计 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<stdlib.h> #include<string.h> void count(char* str,int* …… 题解列表 2024年05月13日 0 点赞 0 评论 98 浏览 评分:6.0
编程入门]自定义函数之字符类型统计 摘要:解题思路:注意事项:参考代码:#include<stdio.h>void Statistic(char* str,int n){ int i; int character = 0; int numbe…… 题解列表 2024年05月07日 0 点赞 0 评论 100 浏览 评分:0.0
自定义函数之字符类型统计 摘要:解题思路:注意事项:参考代码:def function(x): a, b, c, d = 0, 0, 0, 0 for i in x: if i.isalpha(…… 题解列表 2024年04月18日 0 点赞 0 评论 127 浏览 评分:0.0
字符类型统计常规c语言,不用指针,不用定义函数,简单代码 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char str[100]; gets(str); int…… 题解列表 2024年04月05日 0 点赞 0 评论 105 浏览 评分:9.9
字符类型统计 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int *tongji(char *a){ int i; static int b[4]={0}; for(i=0;*(a+i)!=&#…… 题解列表 2024年04月03日 0 点赞 0 评论 124 浏览 评分:0.0
1035: [编程入门]自定义函数之字符类型统计 Java 摘要:解题思路:注意事项:参考代码:import java.util.Scanner; /* * 自定义函数之字符类型统计 */ public class e1035 { publi…… 题解列表 2024年03月24日 0 点赞 0 评论 93 浏览 评分:9.9
自定义字符类型统计 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>void tongji(char a[1000], int *letter, int *num…… 题解列表 2024年03月10日 0 点赞 0 评论 75 浏览 评分:0.0