自定义函数之字符串提取-详细明白 摘要:参考代码:# include <stdio.h># include <string.h>int f(char str1[], char str2[]){ int i, len, j = 0; …… 题解列表 2022年11月22日 0 点赞 0 评论 125 浏览 评分:9.9
编写题解 1033: [编程入门]自定义函数之字符提取 夹带一波return与print的私货 摘要:解题思路:注意事项:写了自己的小错误,也没人看哈哈哈,写的可能乱如果看不懂可以把例子复制下来自己在函数内外敲几个print与return分析一下,勤于动手与动脑才会有收获参考代码:def yuan(a…… 题解列表 2022年11月20日 0 点赞 0 评论 109 浏览 评分:0.0
c++同时处理大小写 摘要:解题思路:利用switch处理注意事项:参考代码:#include<iostream>#include<string>using namespace std;int main(){ char ch[1…… 题解列表 2022年11月17日 0 点赞 0 评论 186 浏览 评分:9.9
1033: [编程入门]自定义函数之字符提取(超级简单) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char c[1000]; int i; gets(c); for(i=0;…… 题解列表 2022年11月14日 0 点赞 0 评论 96 浏览 评分:0.0
1033: [编程入门]自定义函数之字符提取简单代码 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char a[1000]; int i,b; scanf(…… 题解列表 2022年11月02日 0 点赞 1 评论 51 浏览 评分:0.0
c语言的一种思路 摘要:解题思路:6注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char a[100]; gets(a); vow(a)…… 题解列表 2022年10月25日 0 点赞 0 评论 55 浏览 评分:0.0
简单点--字符提取 摘要:解题思路:简单思路,没有用自定义注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char str[100]; gets(str); i…… 题解列表 2022年10月11日 0 点赞 0 评论 156 浏览 评分:9.9
自定义函数之字符提取 摘要: #include #include using namespace std; void fun(char a[],char b[]) { i…… 题解列表 2022年10月11日 0 点赞 0 评论 119 浏览 评分:0.0
1033: [编程入门]自定义函数之字符提取 摘要:解题思路:注意事项:参考代码:#include <iostream> #include <string> using namespace std; string copy (string s) …… 题解列表 2022年10月10日 0 点赞 0 评论 76 浏览 评分:0.0
1033-自定义函数之字符提取 语言:C++ 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cstring>using namespace std; string isY(string s){ string …… 题解列表 2022年10月05日 0 点赞 0 评论 85 浏览 评分:0.0