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

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

筛选

C语言训练-数字母

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

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

摘要:解题思路:写个判断函数 判断字符串是否是字符 注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){    char str……

1130: C语言训练-数字母

摘要:解题思路:注意事项:参考代码:#include <iostream> #include <string> using namespace std; int main() {     st……

C语言训练-数字母

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;string s;int yw;int main(){    getline(cin……

C语言训练-数字母

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