C语言程序设计教程(第三版)课后习题8.6 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>void f(char a[100],char b[100],char c[200]){ int…… 题解列表 2018年12月09日 0 点赞 0 评论 353 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题8.6 (C语言代码) 摘要:解题思路:给字符串定义命名空间,用gets输入字符串,再用strcat函数链接字符串并输出。注意事项:注意加头文件 #include<string.h>参考代码:#include<stdio.h>#i…… 题解列表 2018年12月14日 0 点赞 0 评论 440 浏览 评分:0.0
按照题目写,思路清晰 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ int c,i,j; char a[100],b[100]; gets(a)…… 题解列表 2018年12月26日 0 点赞 0 评论 454 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题8.6 (C语言代码) 摘要:解题思路:其实问题不想要的那么复杂,最简单的就是最好的,符合题目要求就是最好的,能编译成功就是最好的 注意事项:简单的问题不要复杂化了参考代码://写一函数,将两个字符串连接#include<stdi…… 题解列表 2018年12月31日 0 点赞 0 评论 305 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题8.6 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<string.h> int fun(char a[],char b[]) { strcat(b,a); …… 题解列表 2019年03月04日 0 点赞 0 评论 410 浏览 评分:0.0
镜牙 ------C语言程序设计教程(第三版)课后习题8.6 (C语言代码) 摘要:解题思路:注意事项:参考代码: #include<stdio.h> #include<string.h> int main { int i,len1=0,len2=0; …… 题解列表 2019年03月05日 0 点赞 0 评论 509 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题8.6 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int lian(char a[], char b[]){ int m = strlen(a)…… 题解列表 2019年03月18日 0 点赞 0 评论 351 浏览 评分:0.0
[编程入门]自定义函数之字符串连接 (C++代码) 摘要:#include<iostream> #include<cstring> using namespace std; int main() { char st1[100],st2[1…… 题解列表 2019年05月10日 0 点赞 0 评论 801 浏览 评分:0.0
[编程入门]自定义函数之字符串连接 (C++代码)用C++的输入输出就行 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){char a[999],b[999];while(cin>>a>>b)c…… 题解列表 2019年05月24日 0 点赞 0 评论 504 浏览 评分:0.0
[编程入门]自定义函数之字符串连接-(指针版) 摘要:题解如下: #include void connect(char *s,char *t,char *q) { int i=0; for(;*s!=…… 题解列表 2019年06月17日 0 点赞 0 评论 359 浏览 评分:0.0