1130: C语言训练-数字母 ->使用ASCII码 摘要:```python s=input() count=0 #计数 for i in s: #使用ASCII码,1~9的十进制ASCII码值为48~57 if ord(i)>…… 题解列表 2022年01月18日 0 点赞 0 评论 312 浏览 评分:9.0
C语言训练-数字母 摘要:解题思路: ```c #include #include #include int main() { char a[100] = { '\0' }; int i=0,m=0; …… 题解列表 2022年01月18日 0 点赞 0 评论 152 浏览 评分:0.0
C语言训练-数字母 摘要:解题思路:引用<string.h>,使用其中的strlen()函数计算输入字符串的长度;定义数组a[100],通过gets获取输入的值;在自定义函数中,使用strlen()函数获取数组a的长度;依次循…… 题解列表 2022年01月21日 0 点赞 0 评论 412 浏览 评分:9.9
Hifipsysta-1130题-C语言训练-数字母(C++代码)ctype.h的用法总结 摘要:1. isalnum(int c) 该函数检查所传的字符是否是字母和数字。 2. isalpha(int c) 该函数检查所传的字符是否是字母。 3. iscntrl(int c) 该函数检…… 题解列表 2022年01月26日 0 点赞 0 评论 306 浏览 评分:0.0
C语言训练-数字母 摘要:x=input() sum=0 for i in x: if 'a'<=i<='x' or 'A'<=i<='Z': …… 题解列表 2022年02月08日 0 点赞 0 评论 335 浏览 评分:9.0
P1130,朴实无华解法 摘要:解题思路:用字符数组表示字符串,输入字符串后,遍历字符数组,比较字符大小,另定义sum用来统计个数注意事项:非万能头选手记得加上STRLEN所在头文件<string>参考代码:#include<bit…… 题解列表 2022年02月12日 0 点赞 0 评论 228 浏览 评分:9.9
编写题解 1130: C语言训练-数字母 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<string.h>#include<ctype.h>using namespace std;int main(){ …… 题解列表 2022年03月21日 0 点赞 0 评论 153 浏览 评分:0.0
C语言训练-数字母(定义函数的做法,心动不如行动!!!) 摘要:解题思路:记录所有字母出现的次数并输出注意事项:注意字母大小写的区分参考代码:#include<stdio.h>#include<string.h>void mn(char *a){ int i,le…… 题解列表 2022年04月24日 0 点赞 0 评论 348 浏览 评分:9.9
C语言训练-数字母 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){char a[100];int i,z=0;gets(a);for(i=0;i…… 题解列表 2022年04月26日 0 点赞 0 评论 121 浏览 评分:0.0
C语言训练-数字母 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int T(){int i=0,L,n=0; char a[128]; gets(a);…… 题解列表 2022年05月06日 0 点赞 0 评论 101 浏览 评分:0.0