编写题解 1113: C语言考试练习题_保留字母 摘要:解题思路:专门去学习了正则表达式,的确好用注意事项:参考代码:import java.util.Scanner;public class Main { public static void ma…… 题解列表 2021年10月20日 0 点赞 0 评论 114 浏览 评分:0.0
C语言考试练习题_保留字母 (Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class 字符串的处理{ public static void main(String[] a…… 题解列表 2018年04月03日 0 点赞 0 评论 618 浏览 评分:0.0
加油速度速度还是有点慢 摘要:解题思路:注意事项:没有用删除的方法,逆向思维参考代码:s=input()l2=[]for i in s: if (i>='A' and i<='Z')or( i…… 题解列表 2022年05月27日 0 点赞 0 评论 134 浏览 评分:0.0
1113-保留字母 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cstring>using namespace std;int main(){ string s,s1; getli…… 题解列表 2022年10月06日 0 点赞 0 评论 66 浏览 评分:0.0
C语言考试练习题_保留字母-题解(C语言代码)库函数的使用 摘要:再头文件include 中有很多操作字符的库函数,使用以来特别方便。 这里使用的是 int isalpha(int ch); // 如果出是字母返回1,反之返回0 还有很多函数很方便使用: …… 题解列表 2019年06月11日 3 点赞 0 评论 446 浏览 评分:0.0
C语言考试练习题_保留字母-题解(C语言代码) 方法简单! 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h> // 字符串函数int main(){ char a[100]; //定义数组 …… 题解列表 2020年11月30日 0 点赞 0 评论 260 浏览 评分:0.0
1113保留字母(while循环输出) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ char s; while ((cin >> s)) { if (s…… 题解列表 2024年06月11日 0 点赞 0 评论 99 浏览 评分:0.0
小白第一次写题解,简单思路,c++代码 摘要:解题思路:用字符数组存储字符串中出现的英文字母注意事项: 最好使用getline(cin,string)参考代码:#include<iostream>#include<str…… 题解列表 2021年10月10日 0 点赞 0 评论 169 浏览 评分:0.0
WU-C语言考试练习题_保留字母 (C语言代码) 摘要:参考代码:#include<stdio.h> int main() { char str[80],*p; int i; p=str; gets(str); for(i=0;st…… 题解列表 2017年12月18日 3 点赞 0 评论 1084 浏览 评分:0.0
BREEZE------之这一篇没有小技巧(用的C) 摘要:有任何不懂得请私信,保证及时回复可以换一种思维,只输出字母就可以啦!#include<stdio.h>#include<string.h>int main(){ char a[80]; gets(a)…… 题解列表 2019年02月21日 0 点赞 0 评论 873 浏览 评分:0.0