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

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

筛选

C语言训练-数字母

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

C++训练-数字母

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

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

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

1130好心疼C语言

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>#include<ctype.h>         int main(){    char str[……

编写题解 1130: C语言训练-数字母(利用cctype)

摘要:解题思路:我看了一下题解,好像用ctype系列的题解暂时没有。这里就暂且引入一下ctype,操作就稍稍简单一点。ctype.h是C标准函数库中的头文件,定义了一批C语言字符分类函数(C charact……

C语言训练-数字母

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