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

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

筛选

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

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

新手最能看懂

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){    char ch[1000];    int sum=0;    get……

1130: C语言训练-数字母

摘要:此题关键是使用isalpha()函数,注意读数据使用getline()。(尽管使用cin也能过)#include<bits/stdc++.h> using namespace std; int m……