1048: [编程入门]自定义函数之字符串拷贝 摘要:```cpp #include using namespace std; int main() { string s1; int n; int m; cin>>n; cin>>s1…… 题解列表 2022年12月14日 0 点赞 0 评论 122 浏览 评分:9.0
getchar用法。。。 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,i,m; char str[100]; scanf("%d",&n); getchar(); get…… 题解列表 2022年12月03日 0 点赞 0 评论 82 浏览 评分:0.0
C语言 自定义函数之字符串拷贝& 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>#define Long 2int main(){ char* c[Long]; c…… 题解列表 2022年11月30日 0 点赞 0 评论 190 浏览 评分:0.0
一种超简单的方法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int m,n,i; char str[100]; scanf("%d",&n); ge…… 题解列表 2022年11月27日 0 点赞 0 评论 67 浏览 评分:0.0
指针法巧解自定义函数之字符串拷贝 摘要:解题思路:1.先定义正常的n,m的值;2.定义一个变量i;3.定义一个指针指向a数组的首地址加上m - 1,也就是意味着p指针指向了a[m - 1];4.输出由指针p指向的字符串即可。注意事项:1.一…… 题解列表 2022年11月13日 0 点赞 0 评论 85 浏览 评分:9.9
自定义函数之字符串拷贝 简单易懂 摘要:解题思路:切片注意事项:参考代码:m=int(input())x=input()n=int(input())d=x[n-1:]print(d)…… 题解列表 2022年11月11日 0 点赞 0 评论 164 浏览 评分:9.9
字符串拷贝简易版 摘要:解题思路:输入一串字符串,然后直接从输入的m个字符中从第n个开始截断输出注意事项:注意数组是从0开始计数,所以第一个字符对应的数组下标为0参考代码:#include <stdio.h>int main…… 题解列表 2022年11月05日 0 点赞 0 评论 83 浏览 评分:0.0
初学者思维解法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ int a[1000]; int i,m,n,j; scanf("%d\n"…… 题解列表 2022年10月19日 0 点赞 0 评论 61 浏览 评分:0.0
自定义函数之字符串拷贝 摘要: #include #include #include #include using namespace std; void fun…… 题解列表 2022年10月12日 0 点赞 0 评论 119 浏览 评分:0.0
1048-自定义函数之字符串拷贝 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cstring>using namespace std;string copy(int m,char a[]){ s…… 题解列表 2022年10月06日 0 点赞 0 评论 125 浏览 评分:0.0