1033: [编程入门]自定义函数之字符提取 摘要: #include int main() { char a[1000]; char s[1000]; gets(a); int…… 题解列表 2024年12月07日 0 点赞 0 评论 304 浏览 评分:10.0
基于C++,一个简单的编程实现 摘要:解题思路:熟练使用字符串应用注意事项:注意遍历时是否越界参考代码:#include <iostream>#include <string>using namespace std…… 题解列表 2025年01月03日 1 点赞 0 评论 78 浏览 评分:10.0
利用指针,switch语句精简代码,给小白理清楚指针思路 摘要:解题思路:这个题有很多办法可以投机取巧,但是仍然建议小白脚踏实地,强化基础。我们利用指针实现对字符串的访问,无需多余的索引,常数,小白可以思考为什么指针a,b进入函数过后,再出来,他们指向的地址没有变…… 题解列表 2024年11月24日 3 点赞 0 评论 240 浏览 评分:10.0
自定义函数之字符提取 摘要:解题思路:注意事项:参考代码#include<stdio.h>#include<string.h>void yy(char a[],char b[]){ int i,j=0; for(i=…… 题解列表 2023年11月26日 0 点赞 0 评论 106 浏览 评分:9.9
[编程入门]自定义函数之字符提取-题解(C语言代码) 摘要:解题思路:!!!注意事项:!!!参考代码:!#include<stdio.h>#include<string.h>int zftq(char a[],char b[]){ int i,j=0,l,t;…… 题解列表 2020年07月25日 0 点赞 2 评论 946 浏览 评分:9.9
编写题解 1033: [编程入门]自定义函数之字符提取(简单明了) 摘要:```c //自定义函数之字符提取 #include #include void StrExt(){ char s[100]; gets(s);//将输入的字符串存到数组s中 …… 题解列表 2022年08月13日 0 点赞 0 评论 284 浏览 评分:9.9
[编程入门]自定义函数之字符提取-题解(Python代码) 摘要:解题思路:见代码参考代码:ls = 'aeiou' n = input() for i in n: for j in ls: if i == j: …… 题解列表 2021年01月21日 0 点赞 0 评论 571 浏览 评分:9.9
自定义函数之字符提取,很完全 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>void Vowel(char str[]){ int i = 0, j = 0; ch…… 题解列表 2023年07月23日 0 点赞 0 评论 68 浏览 评分:9.9
优质题解 1033: [编程入门]自定义函数之字符提取(string) 摘要:解题思路:stl里面的string类提供了查找函数find 我们只需要建立一个元音字母表,然后在表内查询就可以了。参考代码:#include <bits/stdc++.h> #define ll…… 题解列表 2022年07月08日 0 点赞 5 评论 5275 浏览 评分:9.9
简单解决自定义函数之字符提取 摘要:解题思路:(1)输入一个字符串(2)将字符串转为字符数组(3)循环遍历字符数组,找出元音字符(4)输出参考代码:public class SeptemberFifteen38 { publi…… 题解列表 2021年11月15日 0 点赞 0 评论 530 浏览 评分:9.9