1126: C语言训练-字符串正反连接 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cstring>using namespace std;int main(){ char ch1[100],c…… 题解列表 2024年03月12日 0 点赞 0 评论 116 浏览 评分:9.9
1126: C语言训练-字符串正反连接 摘要:```cpp #include #include using namespace std; int main() { char ch1[50],ch2[50]; gets…… 题解列表 2022年09月22日 0 点赞 0 评论 593 浏览 评分:9.9
正一遍倒着一遍呗 摘要:解题思路:无注意事项:无参考代码:#include<bits/stdc++.h>using namespace std;int main(){ string a; cin>>a; c…… 题解列表 2022年10月26日 0 点赞 0 评论 328 浏览 评分:9.9
本座!元始天尊!!1126: C语言训练-字符串正反连接 摘要:```cpp #include using namespace std; int main() { string s1,s2; cin>>s1; s2=s1; reverse(…… 题解列表 2022年12月15日 0 点赞 0 评论 290 浏览 评分:9.9
字符串正反连接(c++)短小 好理解 摘要:```cpp #include #include using namespace std; int main() { string s, d; cin >> s; d = s; re…… 题解列表 2021年03月09日 0 点赞 3 评论 359 浏览 评分:9.6
字符串正反连接(简单C++) 摘要:#include<iostream> using namespace std; #include<string.h> int main() { char s1[50],s2[50];…… 题解列表 2022年10月26日 0 点赞 0 评论 360 浏览 评分:9.3
C语言训练-字符串正反连接 (C++代码) 摘要:解题思路:先正序输出一遍,再利用倒循环倒着输出一边注意事项: 注意换行符的有无参考代码:#include<iostream> #include<string> using namespac…… 题解列表 2019年03月26日 2 点赞 0 评论 954 浏览 评分:9.3
字符串的修改(摸鱼做法) 摘要:根据题意 每个字符想变成另一个字符 只需一步即可 所以我们只需要 找出两个字符串中相同的字符个数 然后拿最大的长度减去他们即可 ```c #include using namespace s…… 题解列表 2021年05月11日 0 点赞 0 评论 265 浏览 评分:6.0
1126: C语言训练-字符串正反连接 摘要:使用 reverse 函数将字符串反序。#include<bits/stdc++.h> using namespace std; int main(){ string s,temp;…… 题解列表 2021年12月23日 0 点赞 0 评论 223 浏览 评分:0.0
C语言训练-字符串正反连接 (C++代码) 摘要:解题思路:两头的for循环实现拼接功能 中间for循环实现将字符串反向的功能注意事项:参考代码:#include<stdio.h>int main(){ int i,j,k; char …… 题解列表 2018年11月27日 0 点赞 0 评论 597 浏览 评分:0.0