[编程入门]自定义函数之字符串拷贝 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ char arr1[20] = { '0' }; char arr2[20] = {…… 题解列表 2023年11月12日 0 点赞 0 评论 73 浏览 评分:2.0
代码的尽头是优雅 摘要:解题思路: 遍历字符串注意事项:代码索引和现实数字位置序号不一样参考代码:import java.util.Scanner;public class Main { static Scanner …… 题解列表 2023年11月16日 0 点赞 0 评论 60 浏览 评分:9.9
自定义函数之字符串拷贝 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ char str1[100],str2[100]; int m, n,i,j; scanf("%d", &n);…… 题解列表 2023年12月06日 0 点赞 0 评论 67 浏览 评分:0.0
strcpy?不不不,都多余了 摘要:```c #include int main() { int a,b; char s[10000]; scanf("%d%s%d",&a,s,&b); c…… 题解列表 2023年12月20日 0 点赞 0 评论 84 浏览 评分:9.9
题目描述 有一字符串,包含n个字符。自定义函数之字符串拷贝 C语言 摘要:解题思路:注意事项:写一函数,将此字符串中从第m个字符开始的全部字符复制成为另一个字符串。 输入格式 数字n 一行字符串 数字m 输出格式 从m开始的子串 样例输入 6 abcdef 3 样例输出 c…… 题解列表 2024年01月06日 0 点赞 0 评论 83 浏览 评分:0.0
1048: [编程入门]自定义函数之字符串拷贝 摘要:解题思路:注意事项:简单参考代码:n = int(input())s = input()m = int(input())print(s[m - 1:])…… 题解列表 2024年01月08日 0 点赞 0 评论 43 浏览 评分:0.0
取引用+substr复制字符串 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<string>using namespace std;void Copy(string &str_1, string…… 题解列表 2024年01月10日 0 点赞 0 评论 33 浏览 评分:0.0
利用字符数组求解字符串拷贝 摘要:解题思路:用一个数组接收用户输入值找出从第几位开始往后记录输入到下一个数组中输出下一个数组即可注意事项:定义时应该定义成字符数组,用char参考代码:#include<iostream>using n…… 题解列表 2024年01月26日 0 点赞 0 评论 66 浏览 评分:0.0
java--study||O.o 摘要:参考代码:import java.util.Scanner; public class Main { public static void main(String[] args) …… 题解列表 2024年02月13日 0 点赞 0 评论 102 浏览 评分:9.9
malloc函数的使用 摘要:解题思路:注意事项:注意输入n后直接换行会被scanf吞掉,因此需要加一个getchar(),输入完字符串输入m时同理。参考代码:#include<stdio.h>#include<stdlib.h>…… 题解列表 2024年02月23日 0 点赞 0 评论 103 浏览 评分:9.9