1130数数字(for循环遍历) 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cstring>using namespace std;int main(){ char s[100]; cin >…… 题解列表 2024年06月13日 0 点赞 0 评论 95 浏览 评分:0.0
C语言训练-数字母 摘要:**思路:** 如果参数是字母,`isalpha`函数返回true。 `isalpha`函数原型在`cctype`中。 `'\0'`是字符串的结尾 **代码:** ```c++ #incl…… 题解列表 2023年10月15日 0 点赞 0 评论 95 浏览 评分:0.0
编写题解 1130: C语言训练-数字母 摘要:解题思路:注意事项:参考代码:#include <iostream>#include <cstring>#include <algorithm>using namespace std;const in…… 题解列表 2023年04月23日 0 点赞 0 评论 74 浏览 评分:0.0
编写题解 1130: C语言训练-数字母(利用cctype) 摘要:解题思路:我看了一下题解,好像用ctype系列的题解暂时没有。这里就暂且引入一下ctype,操作就稍稍简单一点。ctype.h是C标准函数库中的头文件,定义了一批C语言字符分类函数(C charact…… 题解列表 2023年01月12日 0 点赞 0 评论 72 浏览 评分:0.0
C语言训练-数字母(简单C++) 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { char s[88]; int i=0…… 题解列表 2022年10月26日 0 点赞 0 评论 122 浏览 评分:9.9
C语言训练-数字母 摘要: #include #include using namespace std; int main() { char a[100]; …… 题解列表 2022年10月17日 0 点赞 0 评论 154 浏览 评分:0.0
1130: C语言训练-数字母 摘要:解题思路:注意事项:参考代码:#include <iostream> #include <string> using namespace std; int main() { st…… 题解列表 2022年10月11日 0 点赞 0 评论 142 浏览 评分:0.0
1130: C语言训练-数字母 摘要:```cpp #include #include using namespace std; int main() { short s=0; char ch[100]; …… 题解列表 2022年09月22日 0 点赞 0 评论 284 浏览 评分:9.9
C语言训练-数字母 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;string s;int yw;int main(){ getline(cin…… 题解列表 2022年05月10日 0 点赞 0 评论 104 浏览 评分:0.0
编写题解 1130: C语言训练-数字母 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<string.h>#include<ctype.h>using namespace std;int main(){ …… 题解列表 2022年03月21日 0 点赞 0 评论 153 浏览 评分:0.0