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语言代码) 摘要:解题思路:c语言有个str函数 可以字符串拼接 我直接正序逆序输出就ok了注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(…… 题解列表 2019年04月21日 0 点赞 0 评论 348 浏览 评分:0.0
C语言训练-字符串正反连接 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>void newcat(char *p){ char *a = p; while(*p != '\0') { p++;…… 题解列表 2018年03月17日 0 点赞 0 评论 611 浏览 评分: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
写题解 1126: C语言训练-字符串正反连接 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ int m,i; char str[51]; gets(str); m=st…… 题解列表 2022年03月09日 0 点赞 0 评论 185 浏览 评分:0.0
C语言训练-字符串正反连接 (C语言代码) 摘要:解题思路:正向输出一遍,反向输出一遍注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char ch[53]; gets(c…… 题解列表 2018年07月06日 0 点赞 0 评论 449 浏览 评分:0.0
C语言训练-字符串正反连接 (C++代码) 摘要:解题思路:两头的for循环实现拼接功能 中间for循环实现将字符串反向的功能注意事项:参考代码:#include<stdio.h>int main(){ int i,j,k; char …… 题解列表 2018年11月27日 0 点赞 0 评论 598 浏览 评分:0.0
1126: C语言训练-字符串正反连接 摘要:解题思路:解1;先反转字符串,再合并正反字符串,后输出(更严谨)。解2;先正着输出字符串,再反着输出字符串(简单暴力);注意事项:参考代码:代码1;#include<stdio.h>#include<…… 题解列表 2022年12月30日 0 点赞 0 评论 171 浏览 评分: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<stdio.h>#include<string.h>#define N 50int main(…… 题解列表 2017年12月09日 0 点赞 0 评论 1093 浏览 评分:0.0