[编程入门]自定义函数之字符串拷贝-题解(Python代码) python 摘要:```python n = input()#输入 str = input() #输入 m = int(input())#输入 str=str[m-1:]#截取m-1到字符串末尾的字符串 pr…… 题解列表 2019年11月22日 0 点赞 0 评论 557 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题10.7 更简单!!!! 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ char a[100],b[100]; int n,i,j,m; scanf("%d",&n); getchar…… 题解列表 2018年05月21日 3 点赞 0 评论 754 浏览 评分:0.0
1048: [编程入门]自定义函数之字符串拷贝——两个数组解题法 摘要:解题思路:创造两个字符数组a和b,把输入的字符串存到a里,要拷贝的的字符存到b里注意事项:①不要忘了#include <string.h> ②i的值要等于m减一,不然会少一个…… 题解列表 2023年04月16日 0 点赞 0 评论 93 浏览 评分:0.0
[编程入门]自定义函数之字符串拷贝-题解(C语言代码) 摘要:#include #include int main() { int n,m; char a[100]; int i,l; scanf("%d",&n); scanf("%s…… 题解列表 2020年01月27日 0 点赞 0 评论 428 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题10.7 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,m; char s[100],*p; int i; scanf("%d",&…… 题解列表 2018年08月09日 0 点赞 0 评论 428 浏览 评分:0.0
用字符切片来解决 摘要:解题思路:注意事项:参考代码:n = int(input())x = str(input())m = int(input())print(x[m-1:])…… 题解列表 2021年11月10日 0 点赞 0 评论 169 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题10.7 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>#include<stdlib.h>int main(){ int n,m,i,j; c…… 题解列表 2019年01月13日 0 点赞 0 评论 327 浏览 评分:0.0
1048字符串拷贝(strncpy函数的使用) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>#include<stdlib.h>int main(){ int n; scanf("%d ",&…… 题解列表 2024年05月23日 0 点赞 0 评论 73 浏览 评分:0.0
[编程入门]自定义函数之字符串拷贝-题解(C语言代码) 摘要: #include int main() { int n=0,i=0; char a[100],b[100]; scanf("…… 题解列表 2020年06月09日 0 点赞 0 评论 240 浏览 评分:0.0
[编程入门]自定义函数之字符串拷贝 (C语言代码) 摘要:解题思路: 字符串拷贝其实是可以直接改变循环输出就ok 注意事项: 循环的开始的值参考代码:#include<stdio.h>#include<malloc.h> int main(…… 题解列表 2019年04月17日 0 点赞 0 评论 251 浏览 评分:0.0