编写题解 1033: [编程入门]自定义函数之字符提取(pythonj的简单题解!) 摘要:解题思路:运用列表的方法可以轻易的解决,加上两个循环注意事项:要了解每个函数的原理并熟练运用、、、、参考代码:ls=[] //定义一个空列表for i in range(3): …… 题解列表 2022年08月05日 0 点赞 0 评论 119 浏览 评分:7.0
编写题解 1033: [编程入门]自定义函数之字符提取 摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <string.h> int fun(char a[],char b[]) { int l=s…… 题解列表 2022年08月09日 0 点赞 0 评论 150 浏览 评分:0.0
编写题解 1033: [编程入门]自定义函数之字符提取(简单明了) 摘要:```c //自定义函数之字符提取 #include #include void StrExt(){ char s[100]; gets(s);//将输入的字符串存到数组s中 …… 题解列表 2022年08月13日 0 点赞 0 评论 292 浏览 评分:9.9
题解 1033: [编程入门]自定义函数之字符提取(C) 摘要:解题思路:咱就是说gets和strlen函数不要太好用~,兄弟们用起来~参考代码:#include<stdio.h> #include<string.h> int Vowel(char a[]…… 题解列表 2022年08月15日 0 点赞 0 评论 154 浏览 评分:0.0
遍历字符串内容,满足条件放入储存的字符串中 摘要:参考代码:#define _CRT_SECURE_NO_WARNINGS#include<stdio.h>#include<string.h>#include<assert.h>void Change…… 题解列表 2022年10月02日 0 点赞 0 评论 119 浏览 评分:9.9
[编程入门]自定义函数之字符提取 摘要:解题思路:可调用函数,也可以不调用函数注意事项:参考代码:1. #include <stdio.h> void fasan(char b) { if(b=='a'||b==&…… 题解列表 2022年10月03日 0 点赞 0 评论 121 浏览 评分:9.9
1033-自定义函数之字符提取 语言:C++ 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cstring>using namespace std; string isY(string s){ string …… 题解列表 2022年10月05日 0 点赞 0 评论 85 浏览 评分:0.0
1033: [编程入门]自定义函数之字符提取 摘要:解题思路:注意事项:参考代码:#include <iostream> #include <string> using namespace std; string copy (string s) …… 题解列表 2022年10月10日 0 点赞 0 评论 76 浏览 评分:0.0
自定义函数之字符提取 摘要: #include #include using namespace std; void fun(char a[],char b[]) { i…… 题解列表 2022年10月11日 0 点赞 0 评论 119 浏览 评分:0.0
简单点--字符提取 摘要:解题思路:简单思路,没有用自定义注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char str[100]; gets(str); i…… 题解列表 2022年10月11日 0 点赞 0 评论 156 浏览 评分:9.9