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

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

筛选

简单简单简单的1130

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ char p[100]; int s=0; gets(p); for(int i=0;p[i]!=&#39;\0……

1130数数字(for循环遍历)

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

C++训练-数字母

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;void test01(){    char a;    int count =0;    w……

1130: C语言训练-数字母

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

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

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

C语言训练-数字母

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){     char a[50];     gets(a);     int i=0,count=0;     wh……

C语言训练-数字母

摘要:**思路:** 如果参数是字母,`isalpha`函数返回true。 `isalpha`函数原型在`cctype`中。 `'\0'`是字符串的结尾 **代码:** ```c++ #incl……

C语言训练-数字母

摘要:**代码:** ```c #include #include int main() { int count=0,len,i=0; char a[100]; ge……