[编程入门]自定义函数之字符串连接 两行搞定! 摘要:解题思路:注意事项: 哈哈哈哈哈哈,没骗你吧参考代码:#include"bits/stdc++.h" using namespace std;int main(){st…… 题解列表 2024年12月06日 1 点赞 2 评论 162 浏览 评分:10.0
[编程入门]自定义函数之字符串连接-题解(C++代码) 摘要:```cpp #include #include using namespace std; int main() { string str1, str2; getli…… 题解列表 2020年04月14日 0 点赞 0 评论 870 浏览 评分:9.5
1032: [编程入门]自定义函数之字符串连接 摘要:解题思路:省事的方法有str.cat()函数,string.append()函数等等,直接一个函数搞定,为了理解原理我还是用了for循环,即把str2[ ]的字符一个个放到str1[ ]的后面。注意事…… 题解列表 2022年03月02日 0 点赞 0 评论 493 浏览 评分:9.0
C语言程序设计教程(第三版)课后习题8.6 (C++代码) 摘要:解题思路: C++ STL string字符串类型注意事项:参考代码:#include <iostream> #include <string> using namesp…… 题解列表 2018年12月20日 2 点赞 0 评论 996 浏览 评分:9.0
1032: [编程入门]自定义函数之字符串连接 (c++) 摘要:解题思路: 定义两个string变量 再cout输出就行了注意事项: 很暴力很暴力参考代码:#include<iostream> #include<string> using namespace …… 题解列表 2023年01月05日 0 点赞 1 评论 304 浏览 评分:8.7
自定义函数之字符串连接 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;void tap(string s1,string s2){ cout<<s1…… 题解列表 2022年01月15日 0 点赞 0 评论 792 浏览 评分:8.4
C语言程序设计教程(第三版)课后习题8.6 (最简单的代码,没有之一)(C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ char a[1000],b[1000]; cin>>a>>b; co…… 题解列表 2018年10月03日 0 点赞 0 评论 807 浏览 评分:8.0
1032: [编程入门]自定义函数之字符串连接 摘要:```cpp #include int main() { char s[1000],t[1000]; gets(s); int len1=strlen(s); gets(t); …… 题解列表 2022年12月06日 0 点赞 0 评论 678 浏览 评分:7.3
字符串连接 摘要:```cpp #include using namespace std; int main() { string s,t; getline(cin,s); getline(…… 题解列表 2023年09月18日 0 点赞 0 评论 125 浏览 评分:6.0
编写题解 1032: [编程入门]自定义函数之字符串连接(c++) 摘要:解题思路:定义两个字符串,再分别输出注意事项:不要换行!不要换行!不要换行!参考代码:#include<iostream>using namespace std;int main(){ stri…… 题解列表 2022年05月23日 0 点赞 0 评论 159 浏览 评分:6.0