C语言程序设计教程(第三版)课后习题8.6 (C++代码) 摘要:#include <iostream> #include <string> using namespace std; int main(void) { string str1, …… 题解列表 2017年07月21日 1 点赞 0 评论 781 浏览 评分: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 评论 1751 浏览 评分: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 评论 962 浏览 评分: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 评论 1942 浏览 评分:9.5
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 评论 930 浏览 评分: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 评论 840 浏览 评分:0.0
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 评论 631 浏览 评分:0.0