自定义函数之字符串拷贝 摘要:解题思路:直接通过string字符串拷贝赋值函数就行了注意事项:参考代码:#include<bits/stdc++.h> using namespace std; int main() { int n…… 题解列表 2023年03月15日 0 点赞 0 评论 57 浏览 评分:0.0
1048: [编程入门]自定义函数之字符串拷贝 摘要:解题思路:注意事项:在这个示例代码中,我们使用函数来分别读入数字n、一行字符串和数字m。 然后,我们使用函数将从第个字符开始的子串打印出来,并输出结果。scanfprintfm需要注意的是,在函数中,…… 题解列表 2023年03月22日 0 点赞 0 评论 70 浏览 评分:0.0
1048: [编程入门]自定义函数之字符串拷贝 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ char str[100]; int n,m; scanf("%d",&n); scanf("%s",str);…… 题解列表 2023年03月28日 0 点赞 0 评论 90 浏览 评分:9.9
動態內存申請 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>//malloc函數的頭文件void mycpy(const char *sou,char *goa…… 题解列表 2023年04月03日 0 点赞 0 评论 60 浏览 评分:0.0
1048: [编程入门]自定义函数之字符串拷贝——两个数组解题法 摘要:解题思路:创造两个字符数组a和b,把输入的字符串存到a里,要拷贝的的字符存到b里注意事项:①不要忘了#include <string.h> ②i的值要等于m减一,不然会少一个…… 题解列表 2023年04月16日 0 点赞 0 评论 93 浏览 评分:0.0
别管,输出就完了c++ 摘要:解题思路:1、先定义一个字符数组2、输入n,就是输入多少个数,用for循环3、然后输入m是从哪开始取4、后面调用fun函数,把他妈的m和该死的字符串s传过去,从哪开始就从哪输出,非要纠结题目拷贝可以再…… 题解列表 2023年05月12日 0 点赞 0 评论 69 浏览 评分:0.0
[编程入门]自定义函数之字符串拷贝 摘要:```cpp #include using namespace std; int main(){ char a[400]; int n,m; cin>>n; cin>>a; …… 题解列表 2023年06月04日 0 点赞 0 评论 105 浏览 评分:0.0
自定义函数之字符串拷贝(使用strcpy函数) 摘要:解题思路: 注意事项: 以前都没注意到,gets()也需要#include 还有一般存入数组默认从0开始的, 参考代码: ```c #include #include void…… 题解列表 2023年08月31日 0 点赞 0 评论 93 浏览 评分:0.0
c++字符串简单解法 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<algorithm>using namespace std;int main(){ int n,m; string…… 题解列表 2023年10月15日 0 点赞 0 评论 62 浏览 评分:9.9
[编程入门]自定义函数之字符串拷贝 STL大法 摘要: 参考代码: #include <iostream> using namespace std; string x; int n,k; int main() { cin>>n>>…… 题解列表 2023年10月28日 0 点赞 0 评论 58 浏览 评分:0.0