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

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

筛选

C语言训练-数字母 (C语言代码)

摘要:解题思路:数组存储字母注意事项:strlen的调用是通过这个#include <string.h>才可以实现的,且这里是用这个 gets(c);来输入字符串的!参考代码:         #inclu……

C语言训练-数字母

摘要:解题思路: ```c #include #include #include int main() { char a[100] = { '\0' }; int i=0,m=0; ……

1130: C语言训练-数字母

摘要:注意事项:需要了解并熟练使用str.isalpha()函数。参考代码:s = input()    #字符串类型的输入 cnt = 0    #计数 for i in s:         if……

训练-数字母

摘要:解题思路:字母包括大小写注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){    char a[100];    int i,sum=0;……