字符串正反连接(C语言) 摘要:解题思路:先创建一个数组,用来储存输入字符串,再利用循环把字符串反着输出,把两个字符串连接到一个字符串中。注意事项:索引=字符串长度-1参考代码:#include<stdio.h>#include<s…… 题解列表 2021年09月12日 0 点赞 0 评论 120 浏览 评分:0.0
编写题解 1126: C语言训练-字符串正反连接 摘要:解题思路:注意字符串结束符注意事项:参考代码:#include <stdio.h> #include <stdlib.h> #include <string.h> int main() {…… 题解列表 2021年09月19日 0 点赞 0 评论 112 浏览 评分:0.0
C语言训练-字符串正反连接 正常思路解法 摘要:解题思路:通过正常的数组代换解题注意事项:参考代码:#include<stdio.h> #include<string.h> int main(){ int b,m,n,i,j,k,q; …… 题解列表 2021年10月12日 0 点赞 0 评论 414 浏览 评分:9.9
1126: C语言训练-字符串正反连接-题解(python) 摘要:解题思路:字符串切片的使用注意事项:参考代码:a = input()b = a[::-1]c = a+bprint(c)…… 题解列表 2021年10月22日 0 点赞 0 评论 382 浏览 评分:9.9
algorithm库是真好用 摘要:解题思路:注意事项:参考代码:#include <iostream>#include <algorithm>#include <string>using namespace std;int main(…… 题解列表 2021年10月31日 0 点赞 0 评论 249 浏览 评分:0.0
运用函数解决问题 摘要:解题思路:调用reverse函数在进行相加注意事项:建议了解字符串相关的函数参考代码#include <iostream>#include <string>#include <algorithm>us…… 题解列表 2021年11月18日 0 点赞 0 评论 143 浏览 评分:0.0
1126: C语言训练-字符串正反连接 摘要:使用 reverse 函数将字符串反序。#include<bits/stdc++.h> using namespace std; int main(){ string s,temp;…… 题解列表 2021年12月23日 0 点赞 0 评论 224 浏览 评分:0.0
1126: C语言训练-字符串正反连接 摘要:解题思路:将字符逆序放到另一个数组内,然后拼接两个数组当然,也可以逆序的放在同一个数组内,如方法二参考代码:#include <stdio.h> #include <stdlib.h> #incl…… 题解列表 2021年12月27日 0 点赞 0 评论 435 浏览 评分:9.9
1126: C语言训练-字符串正反连接 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>char a[50],b[50];int i,j;void fun1(char a[]){ j…… 题解列表 2022年01月19日 0 点赞 0 评论 68 浏览 评分:0.0
使用reverse求解 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h> using namespace std;int main(){ string str; cin>>str; cout<<s…… 题解列表 2022年01月22日 0 点赞 0 评论 196 浏览 评分:0.0