1113保留字母(while循环输出) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ char s; while ((cin >> s)) { if (s…… 题解列表 2024年06月11日 0 点赞 0 评论 99 浏览 评分:0.0
1113: C语言考试练习题_保留字母-字符串 摘要:解题思路:输入字符串遍历:如果符合要求,输出结束注意事项:string从0计数参考代码:#include<iostream> using namespace std; int main() { …… 题解列表 2024年03月09日 0 点赞 0 评论 51 浏览 评分:9.9
1113: C语言考试练习题_保留字母 摘要:##题目1113: C语言考试练习题_保留字母 **解题思路:输入一个字符串,一个个判断是否为字母,如果符合条件就输出** ```cpp #include using namespace st…… 题解列表 2023年07月30日 0 点赞 0 评论 92 浏览 评分:0.0
LikeWater - 1113: C语言考试练习题_保留字母 摘要:```cpp #include using namespace std; // 编一个程序,输入一个字符串,将组成字符串的所有非英文字母的字符删除后输出。 int main() { …… 题解列表 2023年02月27日 0 点赞 1 评论 39 浏览 评分:9.9
练习题_保留字母 摘要:解题思路:创建一个空的string和一个char类型数据,使用cin.get()读入数据存放于char中,只要是字母就+=赋值。注意事项:参考代码:#include<iostream>#include…… 题解列表 2023年02月02日 0 点赞 0 评论 85 浏览 评分:0.0
C++ 语言考试练习题_保留字母 摘要:#include<iostream>#include<algorithm>#include<iomanip>#include<cmath>using namespace std;int main(){…… 题解列表 2023年01月13日 0 点赞 0 评论 80 浏览 评分:9.9
C语言考试练习题_保留字母(C++) 摘要:#include<iostream> using namespace std; int main() { char a[80]; int i; cin.get(a,…… 题解列表 2022年10月25日 0 点赞 0 评论 178 浏览 评分:9.9
保留字母(使用cctype头文件) 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cctype>#include<string>using namespace std;int main(){ …… 题解列表 2022年10月16日 0 点赞 0 评论 98 浏览 评分:9.9
1113-保留字母 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cstring>using namespace std;int main(){ string s,s1; getli…… 题解列表 2022年10月06日 0 点赞 0 评论 66 浏览 评分:0.0
1113: C语言考试练习题_保留字母 摘要:```cpp #include #include using namespace std; int main() { int l,j=0; char ch[80],cha…… 题解列表 2022年09月10日 0 点赞 0 评论 489 浏览 评分:9.9