C语言程序设计教程(第三版)课后习题8.6 (C++代码) 摘要:#include <iostream> #include <string> using namespace std; int main(void) { string str1, …… 题解列表 2017年07月21日 1 点赞 0 评论 716 浏览 评分:0.0
使用strcat字符串连接 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cstring>using namespace std;int main(){ char s[100]; …… 题解列表 2023年03月18日 0 点赞 0 评论 54 浏览 评分:0.0
1032: [编程入门]自定义函数之字符串连接 摘要:解题思路:注意事项:参考代码:#include <iostream> #include <string> using namespace std; int main() { stri…… 题解列表 2022年10月11日 0 点赞 0 评论 96 浏览 评分:0.0
简单易懂...... 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<string>using namespace std;int main(){ string a,b; c…… 题解列表 2021年05月16日 0 点赞 0 评论 167 浏览 评分:0.0
[编程入门]自定义函数之字符串连接 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;string s,b;int main(){ cin>>s>>b; cout<…… 题解列表 2022年05月06日 0 点赞 0 评论 177 浏览 评分:0.0
[编程入门]自定义函数之字符串连接-题解(C++代码) 摘要:直接使用c++中+号连接即可 #include #include using namespace std; void link(string a,string b) { a=a+b; …… 题解列表 2019年12月29日 0 点赞 0 评论 344 浏览 评分:0.0
1033-自定义函数之字符串连接 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<string>using namespace std;string con(string s1,string s2)…… 题解列表 2022年10月05日 0 点赞 0 评论 134 浏览 评分:0.0
[编程入门]自定义函数之字符串连接-题解(C++代码) 摘要: #include using namespace std; int main() { char c1[100]; char c2[1…… 题解列表 2020年01月30日 0 点赞 0 评论 290 浏览 评分: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语言程序设计教程(第三版)课后习题8.6 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <cstdio>#include <cstring>int main(){ char c[1005],d[1005],e[2010]; sc…… 题解列表 2017年07月28日 1 点赞 0 评论 825 浏览 评分:0.0