1035: [编程入门]自定义函数之字符类型统计 摘要:解题思路:注意事项:参考代码:ls =input(str())n1,n2,n3,n4 = 0,0,0,0for i in ls: if i.isdigit(): n1 += 1 …… 题解列表 2022年04月07日 0 点赞 0 评论 179 浏览 评分:0.0
[编程入门]自定义函数之字符类型统计(超级容易理解 特别适合新手理解) 摘要:解题思路:注意事项:参考代码:第一种自定义函数方式:def person_pratice(n): ans=0#判断字母 包括大小写 result=0#判断数字 space…… 题解列表 2022年04月06日 0 点赞 1 评论 426 浏览 评分:8.0
字符类型统计(Python语言) 摘要:解题思路:注意事项:参考代码:tp = tuple(input())alp,num,spa,el = 0,0,0,0for i in range(len(tp)): if tp[i].isalp…… 题解列表 2022年03月17日 0 点赞 0 评论 168 浏览 评分:0.0
编写题解 1035: [编程入门]自定义函数之字符类型统计--ctype.h库 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include<string.h>#include <ctype.h>//字符串函数包含的头文件int main(){ int…… 题解列表 2022年03月08日 0 点赞 0 评论 139 浏览 评分:0.0
1035: [编程入门]自定义函数之字符类型统计 摘要:解题思路:和 1012: [编程入门]字符串分类统计 一模一样,区别只是本题要写子函数。1012题链接:https://blog.dotcpp.com/a/84267注意事项:maxSize一开始设…… 题解列表 2022年03月04日 0 点赞 0 评论 286 浏览 评分:9.5
字符类型统计-傻瓜做法 摘要:解题思路:如果忘记了alpha、dight、space这几个单词的情况下可以用这个方法......注意事项:注意字母是会有大写小写两种状态的参考代码:inp = input()A = 0B = 0C …… 题解列表 2022年03月03日 0 点赞 0 评论 138 浏览 评分:0.0
1035: [编程入门]自定义函数之字符类型统计 摘要:解题思路:注意事项:参考代码:def fun(s): a=b=c=d=0 for i in s: if i.isalpha(): a += 1 …… 题解列表 2022年02月21日 0 点赞 0 评论 111 浏览 评分:0.0
1035: [编程入门]自定义函数之字符类型统计 摘要:解题思路:注意事项:参考代码:#include<stdio.h>void count(char s[]);int main() { char s[100]; gets(s); count(s); re…… 题解列表 2022年02月13日 0 点赞 0 评论 109 浏览 评分:0.0
题解 1035: [编程入门]自定义函数之字符类型统计 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<string> using namespace std; void judge(string a, int …… 题解列表 2022年02月02日 0 点赞 0 评论 75 浏览 评分:0.0
自定义函数之字符提类型统计 摘要:解题思路:四个if判断语句分别判断字母(letter),数字(number),空格(blank),其他(others)。注意事项:a[i]='\0';不要忘了写。参考代码:#inclu…… 题解列表 2022年01月29日 0 点赞 0 评论 103 浏览 评分:0.0