1048: [编程入门]自定义函数之字符串拷贝 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#define LEN 100int main(){ char str[LEN]={'\0'},result[LEN]…… 题解列表 2021年03月01日 0 点赞 0 评论 113 浏览 评分:0.0
代码简短能完成就好 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main(){ string a; int m,n; cin >> m; cin >…… 题解列表 2017年12月06日 0 点赞 0 评论 557 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题10.7 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<string.h> int main() { int n, m, i, j; char a[99], b…… 题解列表 2018年08月06日 0 点赞 0 评论 513 浏览 评分:0.0
1048写题记录 摘要:解题思路:简单输入然后进行切片注意事项:目前还不会在一行里面没有空格的输入多个数据,为了避免输入数据太多导致出错的情况,将输入的两个数字分别作为切片的开始和结束来人为限制输出的字符串长度。参考代码:n…… 题解列表 2022年06月06日 0 点赞 1 评论 85 浏览 评分:0.0
[编程入门]自定义函数之字符串拷贝-题解(C语言代码) 摘要:```c #include #include #include int main() { int n, m, t,i; scanf( "%d", &n ); …… 题解列表 2019年06月13日 0 点赞 0 评论 222 浏览 评分:0.0
[编程入门]自定义函数之字符串拷贝-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i,n,m,j=0; char a[100],b[100]; scanf("%d%s%d",&n,a,&…… 题解列表 2021年02月01日 0 点赞 0 评论 173 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题10.7 (C语言代码)scanf后面加个getchar(),收掉回车符,就可以用gets了 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,m,i; char a[100]; scanf("%d",&n); getc…… 题解列表 2017年08月13日 1 点赞 0 评论 1263 浏览 评分:0.0
[编程入门]自定义函数之字符串拷贝-题解(C语言代码) 摘要:来自大佬的代码,感觉他的很棒,然后给加上了注释,方便看懂 ```c #include #include //需要用到malloc函数动态申请内存 int main() { …… 题解列表 2020年11月03日 0 点赞 0 评论 319 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题10.7 (C语言代码) 摘要:注意事项:scanf()函数连续输入整数和字符时会读取换行符,输入字符串就行了参考代码:#include <stdio.h> #include <stdlib.h> int main() { …… 题解列表 2018年01月25日 0 点赞 0 评论 676 浏览 评分:0.0
自定义函数之字符串拷贝(C语言) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<assert.h>char* my_strcpy( char* dest, const char* src,int m…… 题解列表 2023年01月05日 0 点赞 0 评论 53 浏览 评分:0.0