C语言程序设计教程(第三版)课后习题8.6 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>main(){ char str1[100] , str2[100]; scanf("%s%s" , str1 , str2…… 题解列表 2017年08月22日 0 点赞 0 评论 677 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题8.6 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<string.h> int main() { int i,j; char str1[100…… 题解列表 2017年09月02日 0 点赞 0 评论 630 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题8.6 (C语言代码) 摘要:解题思路:用gets()输入,puts()输出,调用strcat(数组1,数组2);注意事项:调用C语言中的库函数参考代码:#include<stdio.h>#include<math.h>int m…… 题解列表 2017年09月23日 0 点赞 0 评论 691 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题8.6 (C语言代码) 摘要:解题思路:就是字符串的输入和字符指针的使用注意事项:参考代码:#include<stdio.h>#include<string.h>void pinjie(char *p1,char *pp,int …… 题解列表 2017年10月08日 0 点赞 0 评论 711 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题8.6 (C语言代码) 摘要:解题思路:注意事项:参考代码:/* 字符串链接 */ #include<stdio.h> void link(char *ch1,char *ch2) { char ch[1000…… 题解列表 2017年10月27日 3 点赞 2 评论 624 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题8.6 (C语言代码) 摘要:解题思路:用函数思想注意事项:参考代码:#include <stdio.h>#include <string.h>int lianjie(char *a,char *b){ int la,lb; la…… 题解列表 2017年10月29日 0 点赞 0 评论 994 浏览 评分:9.9
C语言程序设计教程(第三版)课后习题8.6 (C语言代码) 摘要:#include <stdio.h> #include <string.h> int main() { char str1[100],str2[100]; gets(str1); g…… 题解列表 2017年12月02日 1 点赞 0 评论 584 浏览 评分:0.0
WU-C语言程序设计教程(第三版)课后习题8.6 (C语言代码) 摘要:#include<stdio.h> #include<string.h> void link(char *a,char *b) { a=strcat(a,b); puts(a); …… 题解列表 2017年12月05日 4 点赞 1 评论 718 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题8.6 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <iostream>#include <string>#include <cstdio>using namespace std;int main(){ …… 题解列表 2017年12月06日 0 点赞 0 评论 537 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题8.6 (C语言代码) 摘要:解题思路:找最后数组元素的序后,逆输出。注意事项:strlen(str)只能表示数组的长度。参考代码:#include <stdio.h>#include <string.h>int main(){ …… 题解列表 2017年12月10日 0 点赞 0 评论 655 浏览 评分:0.0