题解 1130: C语言训练-数字母

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

筛选

数字母-C语言题解

摘要:解题思路:定义字符数组   输入字符串   循环判断字母注意事项:定义flag记录字母数参考代码:#include<stdio.h>#include<string.h>#include<ctype.h……

C语言训练-数字母

摘要:解题思路:引用<string.h>,使用其中的strlen()函数计算输入字符串的长度;定义数组a[100],通过gets获取输入的值;在自定义函数中,使用strlen()函数获取数组a的长度;依次循……

python关键字:islower&isupper&isdigit;chr&ord

摘要:问题十分简单。我们要接收一个字符串,遍历它,然后对每个字符做判断基本的代码框架是:string=input()  #接收输入count=0           #计数器for i in string:……

C语言训练-数字母(简单C++)

摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() {     char s[88];     int i=0……

数字母 (常规)

摘要:解题思路: 常规做法,求字符串长度,循环遍历,判断字母.注意事项:参考代码: char arr[101]; scanf("%s", arr); int len = strlen(arr); int c……