[编程入门]自定义函数之字符串连接-题解(C语言代码) 摘要:## 一、第一种方法 用指针 void link(char *s,char *t) { while (*s != '\0') { s+…… 题解列表 2019年06月19日 0 点赞 0 评论 464 浏览 评分:0.0
[编程入门]自定义函数之字符串连接-(指针版) 摘要:题解如下: #include void connect(char *s,char *t,char *q) { int i=0; for(;*s!=…… 题解列表 2019年06月17日 0 点赞 0 评论 274 浏览 评分: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 评论 434 浏览 评分:0.0
[编程入门]自定义函数之字符串连接 (C++代码) 摘要:#include<iostream> #include<cstring> using namespace std; int main() { char st1[100],st2[1…… 题解列表 2019年05月10日 0 点赞 0 评论 710 浏览 评分:0.0
[编程入门]自定义函数之字符串连接 (C语言代码) 摘要:解题思路:简单讲就是讲str2的字符添加到str1最后一个字符之后或者建立一个新的字符串str3来存放str1和str2,这个字符串的长度为两者字符个数之和再加1(这个长度使用strlen()函数取的…… 题解列表 2019年05月08日 0 点赞 0 评论 547 浏览 评分:9.9
[编程入门]自定义函数之字符串连接 (C语言代码) 摘要:解题思路:题目要求是两行字符串,那就创建一个二维数组用来存放,通过gets()函数每次获取一行。再创建一个一维数组,每次将二维数组中的一行放入,在第一行放入之后需要计算当前一维数组的长度,用来确定下次…… 题解列表 2019年04月19日 1 点赞 1 评论 1387 浏览 评分:8.0
题解1032(c语言代码) 极短代码,适合小白(无gets,puts等冷门函数) 摘要:重点: 1:简单的题,不要想得那么难! 2:连接字符串无需strcpy! 无需strcpy! 无需strcpy! 3:字符串输入输出用%s!代码: #include<stdio…… 题解列表 2019年03月29日 3 点赞 4 评论 768 浏览 评分:8.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 评论 242 浏览 评分: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 评论 398 浏览 评分: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 评论 331 浏览 评分:0.0