优质题解 Manchester-C语言程序设计教程(第三版)课后习题10.7 摘要:解题思路:1:输入一个整数n,开辟两次n个字符空间;2:输入n个字符;(这里默认没有空格等字符)3:输入一个整数m;4:求复制的字符个数;5:把从m开始的字符复制到另一字符串;6:输出;代码一(字符没…… 题解列表 2017年12月20日 35 点赞 41 评论 10067 浏览 评分:9.0
C语言程序设计教程(第三版)课后习题10.7 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>char b[80];void cp(int n,char s[],int m){ int…… 题解列表 2017年12月17日 0 点赞 0 评论 734 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题10.7 (C语言代码) 摘要:#include <stdio.h> #define LEN 100 void Copy(char a[], char b[], int n, int m); int main(void) {…… 题解列表 2017年12月14日 90 点赞 11 评论 4427 浏览 评分:9.8
C语言程序设计教程(第三版)课后习题10.7 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>void fun(char a[],char b[],int d,int c);int main(){ int n=0,m=0; ch…… 题解列表 2017年12月14日 0 点赞 0 评论 640 浏览 评分:0.0
WU-C语言程序设计教程(第三版)课后习题10.7 (C语言代码) 摘要:参考代码:#include<stdio.h> void cut(char a[],int n) { int i,m; char b[100],*p; p=b; for(i=0;…… 题解列表 2017年12月10日 1 点赞 0 评论 807 浏览 评分: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(void) { char str1[512], str2[512]; int…… 题解列表 2017年11月23日 0 点赞 0 评论 710 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题10.7 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <iostream> #include <stdio.h>#include <cstring>using namespace std; int ma…… 题解列表 2017年11月13日 0 点赞 0 评论 750 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题10.7 指针(C语言代码) 摘要:#include <stdio.h> int main() { int n, m; scanf("%d", &n); char s[n+1]; scan…… 题解列表 2017年11月11日 1 点赞 0 评论 706 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题10.7 (C语言代码) 摘要:#include<stdio.h>int main(){ int n,m,i,j; char a[100]; scanf("%d",&n); getchar(); for(i=0;i<n;i++) …… 题解列表 2017年11月02日 3 点赞 8 评论 1296 浏览 评分:9.9