C语言训练-字符串正反连接 (C语言代码) 摘要:解题思路:c语言有个str函数 可以字符串拼接 我直接正序逆序输出就ok了注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(…… 题解列表 2019年04月21日 0 点赞 0 评论 348 浏览 评分:0.0
C语言训练-字符串正反连接-题解(C语言代码)***指针做法 摘要:```c #include #include int main() { char a[100],b[50]; gets(a); int l=strlen(a); …… 题解列表 2020年09月29日 0 点赞 0 评论 209 浏览 评分:0.0
。。比较简单的一种方法。。:C语言训练-字符串正反连接 (C语言代码) 摘要:#include<stdio.h> #include<string.h> int main() { int k,i; char str[100]; gets(str); pri…… 题解列表 2019年02月21日 3 点赞 0 评论 608 浏览 评分:0.0
C语言训练-字符串正反连接-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ int n,i; char a[100],b[100]; gets(a); …… 题解列表 2020年12月20日 0 点赞 0 评论 157 浏览 评分:0.0
C语言训练-字符串正反连接 (Java代码)呦呦呦 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class The126 {public static void main(String []args){…… 题解列表 2018年04月27日 1 点赞 0 评论 753 浏览 评分:0.0
C语言训练-字符串正反连接-题解(C++代码) 摘要:```cpp #include #include using namespace std; int main() { string s1,s2; cin>>s1;…… 题解列表 2020年03月13日 0 点赞 0 评论 381 浏览 评分:0.0
Hifipsysta-1126题-字符串正反连接(C++代码)善用字符串加法 摘要: ```cpp #include #include #include using namespace std; int main() { string str1,str2=…… 题解列表 2022年01月26日 0 点赞 0 评论 155 浏览 评分:0.0
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 评论 67 浏览 评分:0.0
c++字符串的简单解法 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cstring>using namespace std;int main(){ string str; getli…… 题解列表 2023年10月16日 0 点赞 0 评论 67 浏览 评分:0.0
C语言训练-字符串正反连接(用指针) 摘要:```c #include int main() { char a[102]; scanf("%s",a); printf("%s",a); char *p=a; while…… 题解列表 2023年11月15日 0 点赞 0 评论 90 浏览 评分:0.0