1126题 利用指针 以及 编写函数(返回指针的函数)字符串正反连接-题解(C语言代码) 摘要:```c //所给字符串正序和反序连接,形成新串并输出 #include #include #include char *reverse_string(char str[]); char…… 题解列表 2019年08月12日 0 点赞 1 评论 981 浏览 评分:9.9
C语言训练-字符串正反连接-题解(C语言代码)简单易懂 摘要:#include #include int main() { char a[200],b[100]; int i,j=0,k; gets(a); k=strlen(a); f…… 题解列表 2019年06月26日 1 点赞 0 评论 744 浏览 评分:0.0
C语言训练-字符串正反连接 (C语言代码)。。不怎么符合题意 摘要:解题思路:模拟题意注意事项:无参考代码:#include<stdio.h>#include<string.h>int main(){ char a[51]; int len,i; gets(a); l…… 题解列表 2019年06月02日 0 点赞 0 评论 473 浏览 评分:0.0
C语言训练-字符串正反连接 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char a[1000]; int i,len,len1; gets(a);…… 题解列表 2019年05月31日 0 点赞 0 评论 377 浏览 评分:0.0
C语言训练-字符串正反连接 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ int i=0,n=0; char a[110],b[55]; gets(a…… 题解列表 2019年05月27日 0 点赞 0 评论 294 浏览 评分:0.0
C语言训练-字符串正反连接 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>#include<stdlib.h>int main(){ char a[60]; int l,i=…… 题解列表 2019年05月05日 0 点赞 0 评论 292 浏览 评分:0.0
C语言训练-字符串正反连接 (C语言代码) 摘要:解题思路:c语言有个str函数 可以字符串拼接 我直接正序逆序输出就ok了注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(…… 题解列表 2019年04月21日 0 点赞 0 评论 418 浏览 评分:0.0
C语言训练-字符串正反连接 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ int i,k,b[50],j; char a[50]; gets(a); …… 题解列表 2019年04月14日 0 点赞 0 评论 372 浏览 评分:0.0
C语言训练-字符串正反连接 (C++代码) 摘要:解题思路:先正序输出一遍,再利用倒循环倒着输出一边注意事项: 注意换行符的有无参考代码:#include<iostream> #include<string> using namespac…… 题解列表 2019年03月26日 2 点赞 0 评论 1071 浏览 评分:9.3
C语言训练-字符串正反连接 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char s1[100],s2[100]; int i,j=0; …… 题解列表 2019年03月03日 1 点赞 0 评论 519 浏览 评分:0.0