引入第三个一维字符数组 摘要:解题思路: 引入第三个一维字符数组,把两个字符数组的值依次赋值给第三个数组。参考代码:#include<stdio.h> #include<string.h> voi…… 题解列表 2022年10月13日 0 点赞 1 评论 149 浏览 评分:6.0
自定义函数之字符串连接 摘要: #include using namespace std; void fun(string s1, string s2) { cout s1 >> …… 题解列表 2022年10月11日 0 点赞 0 评论 121 浏览 评分:0.0
1032: [编程入门]自定义函数之字符串连接 摘要:解题思路:注意事项:参考代码:#include <iostream> #include <string> using namespace std; int main() { stri…… 题解列表 2022年10月11日 0 点赞 0 评论 96 浏览 评分:0.0
1033-自定义函数之字符串连接 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<string>using namespace std;string con(string s1,string s2)…… 题解列表 2022年10月05日 0 点赞 0 评论 134 浏览 评分:0.0
1032: [编程入门]自定义函数之字符串连接 (三行代码解决) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ string a,b; cin>>a>>b; cout<<a<<b;}…… 题解列表 2022年09月17日 0 点赞 0 评论 85 浏览 评分:0.0
自定义函数之字符串连接(c语言)(指针) 摘要:# 自定义函数之字符串连接 ```c #define _CRT_SECURE_NO_WARNINGS 1 #include #include void Add(char* test…… 题解列表 2022年09月10日 0 点赞 0 评论 155 浏览 评分: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
编写题解 1032: [编程入门]自定义函数之字符串连接(函数) 摘要:1.gets()函数用来从标准输入设备(键盘)读取字符串直到换行符结束,但换行符会被丢弃,然后在末尾添加'\0'字符。gets(c)将读取的字符串保存到c[]中。 2.puts()函数把字符串输出到…… 题解列表 2022年08月12日 0 点赞 0 评论 309 浏览 评分:8.0
编写题解 1032: [编程入门]自定义函数之字符串连接 摘要:解题思路:用strcat()函数注意事项:参考代码:#include <stdio.h> #include <string.h> int main() { char a[100…… 题解列表 2022年08月09日 0 点赞 0 评论 98 浏览 评分:0.0
题解 1032: [编程入门]自定义函数之字符串连接(C语言) 摘要:加油,今天又是摆烂的一天!!参考代码(偷懒摆烂版本):#include<stdio.h> int main() { char a[100]; gets(a); cha…… 题解列表 2022年07月26日 0 点赞 0 评论 103 浏览 评分:0.0