[编程入门]自定义函数之字符串连接 摘要:解题思路:这题是1032,除了最简单的strcat()使用外,我提供了一个与1031类似思路的解题方法,即用指针作为函数的返回值。注意事项:这个方法比较麻烦,本人是拿来对第1031题学到的知识进行巩固…… 题解列表 2023年01月10日 0 点赞 0 评论 90 浏览 评分:0.0
[编程入门]自定义函数之字符串连接-题解(C++代码) 摘要:使用gets()输入两个字符串,输出时分别输出中间不加空格或者回车就好了 ```cpp #include using namespace std; int main() { char a…… 题解列表 2020年01月19日 0 点赞 0 评论 296 浏览 评分:0.0
c代码记录之自定义函数连接字符串-指针--Mark:strcat函数,用于连接字符串 摘要:代码1:用getchar() #include int main() { char get_char; while((get_char…… 题解列表 2023年12月15日 0 点赞 0 评论 85 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题8.6 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char a[100],b[100]; gets(a); gets(b);…… 题解列表 2018年09月05日 0 点赞 0 评论 501 浏览 评分:0.0
编写题解 1032: [编程入门]自定义函数之字符串连接 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>#include <string.h>void fcn(char *arr1, char *ar…… 题解列表 2022年09月05日 0 点赞 0 评论 93 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题8.6 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <iostream>#include <string>#include <cstdio>using namespace std;int main(){ …… 题解列表 2017年12月06日 0 点赞 0 评论 537 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题8.6 (C语言代码) 摘要:解题思路:字符串的拼接注意事项:C语言中有字符串拼接的库函数,不过做题的话,感觉还是自己想怎样实现比较好。看了下其它人的题解。有些就是奇淫技巧。参考代码:#include<stdio.h> #inc…… 题解列表 2018年10月31日 0 点赞 0 评论 280 浏览 评分:0.0
[编程入门]自定义函数之字符串连接-题解(C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<string.h>using namespace std;void Link(char *a0,char *b0){…… 题解列表 2020年07月23日 0 点赞 0 评论 228 浏览 评分:0.0
自定义函数之字符串连接 摘要: #include using namespace std; void fun(string s1, string s2) { cout s1 >> …… 题解列表 2022年10月11日 0 点赞 0 评论 121 浏览 评分:0.0
自定义函数之字符串连接 摘要:解题思路:【原理】,不使用<string.h>头文件,不使用字符串连接函数,使用指针注意事项:参考代码:#include <stdio.h>#include <stdlib.h>char *MyStr…… 题解列表 2022年01月18日 0 点赞 0 评论 201 浏览 评分:0.0