基于C++,一个简单的编程实现 摘要:解题思路:熟练使用字符串应用注意事项:注意遍历时是否越界参考代码:#include <iostream>#include <string>using namespace std…… 题解列表 2025年01月03日 1 点赞 0 评论 79 浏览 评分:10.0
先转化为小写 摘要:#include<stdio.h> #include<ctype.h> int main(void) { char a[100]; char target[100]; …… 题解列表 2024年12月28日 0 点赞 0 评论 72 浏览 评分:0.0
1033: [编程入门]自定义函数之字符提取 摘要: #include int main() { char a[1000]; char s[1000]; gets(a); int…… 题解列表 2024年12月07日 0 点赞 0 评论 305 浏览 评分:10.0
利用指针,switch语句精简代码,给小白理清楚指针思路 摘要:解题思路:这个题有很多办法可以投机取巧,但是仍然建议小白脚踏实地,强化基础。我们利用指针实现对字符串的访问,无需多余的索引,常数,小白可以思考为什么指针a,b进入函数过后,再出来,他们指向的地址没有变…… 题解列表 2024年11月24日 3 点赞 0 评论 240 浏览 评分:10.0
自定义函数之字符提取 摘要:解题思路:注意事项:参考代码:def yuan(a,b): for i in a: if i=='a' or i=='e' or i=='i…… 题解列表 2024年11月16日 0 点赞 0 评论 124 浏览 评分:0.0
1033: [编程入门]自定义函数之字符提取 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;void find(string s){ for (int i=0;s[i]!='\…… 题解列表 2024年11月15日 1 点赞 0 评论 168 浏览 评分:9.9
自定义函数之字符提取 摘要:解题思路:注意事项:参考代码:#include<stdio.h>void yuany(char a[]){ char b[100]; int i,j=0; for(i=0;i<100…… 题解列表 2024年11月15日 0 点赞 0 评论 93 浏览 评分:0.0
自定义函数之字符提取 摘要:解题思路:用s[ ]和t[ ]对比注意事项:s[ ]的大小参考代码:#include<stdio.h>int main(){ char s[100],t[6]="aeiou"; int i,c; fo…… 题解列表 2024年10月31日 0 点赞 0 评论 111 浏览 评分:9.9
1033: [编程入门]自定义函数之字符提取(python) 摘要:#### 1033: [编程入门]自定义函数之字符提取 可以采用关键字`in`来查询指定字符是否存在于指定字符串中,如果字符串中存在指定字符则返回True,如果不存在则返回False。 …… 题解列表 2024年10月24日 0 点赞 0 评论 47 浏览 评分:0.0
注意换行符! 摘要:解题思路:需要注意要把自++多余的最后一个空元素设为换行符!注意事项:参考代码:#include <stdio.h>#include <string.h>int main(){ char a[1…… 题解列表 2024年09月10日 0 点赞 0 评论 31 浏览 评分:0.0