C语言程序设计教程(第三版)课后习题8.6 (C语言代码) 摘要:知识基础:函数定义字符数组和字符串答案#include<stdio.h> char fun(char a[],char b[]); char fun(char a[],char b[]){ p…… 题解列表 2017年06月11日 1 点赞 1 评论 581 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题8.6 (C语言代码) 摘要:#include<stdio.h>int main(){ char a[100],b[100]; int i=0,j=0; gets(a); gets(b); while…… 题解列表 2017年06月12日 0 点赞 0 评论 772 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题8.6 (C语言代码) 摘要:#include<stdio.h> void strPlus(char a[] ,char b[]); int main() { char a[1024],b[1024]; scanf(…… 题解列表 2017年06月23日 0 点赞 0 评论 796 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题8.6 (C语言代码) 摘要:#include<stdio.h> #include<string.h> void mystrcat(char s1[],char s2[]); int main(void) { char…… 题解列表 2017年07月03日 1 点赞 16 评论 1798 浏览 评分:9.5
C语言程序设计教程(第三版)课后习题8.6 (Java代码) 摘要:import java.util.Scanner;public class Connect { public static String Con(String str1,String s…… 题解列表 2017年07月07日 0 点赞 0 评论 870 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题8.6 (C语言代码) 摘要:话不多说,直接上代码参考代码:#include <stdio.h>#include <stdlib.h>#include<string.h>int main(){ char buf1[20],b…… 题解列表 2017年07月19日 5 点赞 1 评论 1682 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题8.6 (C++代码) 摘要:#include <iostream> #include <string> using namespace std; int main(void) { string str1, …… 题解列表 2017年07月21日 1 点赞 0 评论 716 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题8.6 (C语言代码) 摘要:解题思路:字符串的处理一般有两种,复制和连接,这里用到一个连接函数。参考代码:char a[100], b[50]; gets(a); gets(b); strcat(a, b); …… 题解列表 2017年07月23日 0 点赞 1 评论 470 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题8.6 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <cstdio>#include <cstring>int main(){ char c[1005],d[1005],e[2010]; sc…… 题解列表 2017年07月28日 1 点赞 0 评论 824 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题8.6 (C++代码)不是所有的时候都要按照题目要求才能AC 摘要:解题思路:不是所有的时候都要按照题目要求才能AC直接连续输出不就OK了么。。。。注意事项:中间不要回车换行符“\n”参考代码:#include<stdio.h> int main() { …… 题解列表 2017年07月28日 16 点赞 7 评论 1434 浏览 评分:2.0