C语言程序设计教程(第三版)课后习题8.6 (C语言代码) 摘要:解题思路:用gets()输入,puts()输出,调用strcat(数组1,数组2);注意事项:调用C语言中的库函数参考代码:#include<stdio.h>#include<math.h>int m…… 题解列表 2017年09月23日 0 点赞 0 评论 690 浏览 评分: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 评论 629 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题8.6 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>main(){ char str1[100] , str2[100]; scanf("%s%s" , str1 , str2…… 题解列表 2017年08月22日 0 点赞 0 评论 676 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题8.6 (C++代码)不是所有的时候都要按照题目要求才能AC 摘要:解题思路:不是所有的时候都要按照题目要求才能AC直接连续输出不就OK了么。。。。注意事项:中间不要回车换行符“\n”参考代码:#include<stdio.h> int main() { …… 题解列表 2017年07月28日 16 点赞 7 评论 1433 浏览 评分:2.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语言代码) 摘要:解题思路:字符串的处理一般有两种,复制和连接,这里用到一个连接函数。参考代码: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 <iostream> #include <string> using namespace std; int main(void) { string str1, …… 题解列表 2017年07月21日 1 点赞 0 评论 715 浏览 评分: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 (Java代码) 摘要:import java.util.Scanner;public class Connect { public static String Con(String str1,String s…… 题解列表 2017年07月07日 0 点赞 0 评论 869 浏览 评分: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